summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes')
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/display.cpp54
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/display.h66
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/golden/while_datatypes.log186
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/main.cpp82
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/stimulus.cpp83
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/stimulus.h69
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/while_datatypes.cpp120
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/while_datatypes.f4
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/while_datatypes.h74
9 files changed, 738 insertions, 0 deletions
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/display.cpp b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/display.cpp
new file mode 100644
index 000000000..3e8ba2ec1
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/display.cpp
@@ -0,0 +1,54 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ display.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-27
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "display.h"
+
+void display::entry(){
+
+ wait(2);
+ while(1) {
+ // Reading Data, and Counter i,j is counted up.
+ while (out_valid.read()==false) wait();
+ cout << "Display : " << result.read() << " "
+ << " at " << sc_time_stamp() << endl;
+ wait();
+ }
+}
+
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/display.h b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/display.h
new file mode 100644
index 000000000..b50f526c0
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/display.h
@@ -0,0 +1,66 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ display.h --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-27
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "systemc.h"
+
+SC_MODULE( display )
+{
+ SC_HAS_PROCESS( display );
+
+ sc_in_clk clk;
+
+ const sc_signal<int>& result; // Input port
+ const sc_signal<bool>& out_valid;
+
+ display( sc_module_name NAME,
+ sc_clock& CLK,
+ const sc_signal<int>& RESULT,
+ const sc_signal<bool>& OUT_VALID
+ )
+ :
+ result(RESULT),
+ out_valid(OUT_VALID)
+ {
+ clk(CLK);
+ SC_CTHREAD( entry, clk.pos() );
+ }
+
+ void entry();
+};
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/golden/while_datatypes.log b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/golden/while_datatypes.log
new file mode 100644
index 000000000..ee8d4b026
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/golden/while_datatypes.log
@@ -0,0 +1,186 @@
+SystemC Simulation
+Stimuli1 : in_valid = true in_value 0 at 6 ns
+Stimuli1 : in_valid = true in_value 1 at 7 ns
+Stimuli1 : in_valid = true in_value 2 at 8 ns
+Display : 0 at 8 ns
+Stimuli1 : in_valid = true in_value 3 at 9 ns
+Display : 1 at 9 ns
+Stimuli1 : in_valid = true in_value 4 at 10 ns
+Display : 2 at 10 ns
+Stimuli1 : in_valid = true in_value 5 at 11 ns
+Display : 3 at 11 ns
+Stimuli1 : in_valid = true in_value 6 at 12 ns
+Display : 4 at 12 ns
+Stimuli1 : in_valid = true in_value 7 at 13 ns
+Display : 5 at 13 ns
+Stimuli1 : in_valid = true in_value 8 at 14 ns
+Display : 6 at 14 ns
+Stimuli1 : in_valid = true in_value 9 at 15 ns
+Display : 7 at 15 ns
+Stimuli1 : in_valid = true in_value 10 at 16 ns
+Display : 8 at 16 ns
+Display : 9 at 17 ns
+Display : 10 at 18 ns
+Stimuli2 : in_valid = true in_value 0 at 21 ns
+Stimuli2 : in_valid = true in_value 1 at 22 ns
+Stimuli2 : in_valid = true in_value 2 at 23 ns
+Stimuli2 : in_valid = true in_value 3 at 24 ns
+Display : 10 at 24 ns
+Stimuli2 : in_valid = true in_value 4 at 25 ns
+Display : 10 at 25 ns
+Stimuli2 : in_valid = true in_value 5 at 26 ns
+Display : 10 at 26 ns
+Stimuli2 : in_valid = true in_value 6 at 27 ns
+Display : 10 at 27 ns
+Stimuli2 : in_valid = true in_value 7 at 28 ns
+Display : 5 at 28 ns
+Stimuli2 : in_valid = true in_value 8 at 29 ns
+Display : 6 at 29 ns
+Stimuli2 : in_valid = true in_value 9 at 30 ns
+Display : 7 at 30 ns
+Stimuli2 : in_valid = true in_value 10 at 31 ns
+Display : 8 at 31 ns
+Display : 8 at 32 ns
+Display : 10 at 33 ns
+Display : 10 at 34 ns
+Display : 10 at 35 ns
+Stimuli3 : in_valid = true in_value 0 at 36 ns
+Stimuli3 : in_valid = true in_value 1 at 37 ns
+Stimuli3 : in_valid = true in_value 2 at 38 ns
+Stimuli3 : in_valid = true in_value 3 at 39 ns
+Stimuli3 : in_valid = true in_value 4 at 40 ns
+Stimuli3 : in_valid = true in_value 5 at 41 ns
+Display : 10 at 41 ns
+Stimuli3 : in_valid = true in_value 6 at 42 ns
+Display : 4 at 42 ns
+Stimuli3 : in_valid = true in_value 7 at 43 ns
+Display : 5 at 43 ns
+Stimuli3 : in_valid = true in_value 8 at 44 ns
+Display : 6 at 44 ns
+Stimuli3 : in_valid = true in_value 9 at 45 ns
+Display : 6 at 45 ns
+Stimuli3 : in_valid = true in_value 10 at 46 ns
+Stimuli1 : in_valid = true in_value 0 at 57 ns
+Stimuli1 : in_valid = true in_value 1 at 58 ns
+Stimuli1 : in_valid = true in_value 2 at 59 ns
+Display : 6 at 59 ns
+Stimuli1 : in_valid = true in_value 3 at 60 ns
+Display : 1 at 60 ns
+Stimuli1 : in_valid = true in_value 4 at 61 ns
+Display : 2 at 61 ns
+Stimuli1 : in_valid = true in_value 5 at 62 ns
+Display : 3 at 62 ns
+Stimuli1 : in_valid = true in_value 6 at 63 ns
+Display : 4 at 63 ns
+Stimuli1 : in_valid = true in_value 7 at 64 ns
+Display : 5 at 64 ns
+Stimuli1 : in_valid = true in_value 8 at 65 ns
+Display : 6 at 65 ns
+Stimuli1 : in_valid = true in_value 9 at 66 ns
+Display : 7 at 66 ns
+Stimuli1 : in_valid = true in_value 10 at 67 ns
+Display : 8 at 67 ns
+Display : 9 at 68 ns
+Display : 10 at 69 ns
+Stimuli2 : in_valid = true in_value 0 at 72 ns
+Stimuli2 : in_valid = true in_value 1 at 73 ns
+Stimuli2 : in_valid = true in_value 2 at 74 ns
+Stimuli2 : in_valid = true in_value 3 at 75 ns
+Display : 10 at 75 ns
+Stimuli2 : in_valid = true in_value 4 at 76 ns
+Display : 10 at 76 ns
+Stimuli2 : in_valid = true in_value 5 at 77 ns
+Display : 10 at 77 ns
+Stimuli2 : in_valid = true in_value 6 at 78 ns
+Display : 10 at 78 ns
+Stimuli2 : in_valid = true in_value 7 at 79 ns
+Display : 5 at 79 ns
+Stimuli2 : in_valid = true in_value 8 at 80 ns
+Display : 6 at 80 ns
+Stimuli2 : in_valid = true in_value 9 at 81 ns
+Display : 7 at 81 ns
+Stimuli2 : in_valid = true in_value 10 at 82 ns
+Display : 8 at 82 ns
+Display : 8 at 83 ns
+Display : 10 at 84 ns
+Display : 10 at 85 ns
+Display : 10 at 86 ns
+Stimuli3 : in_valid = true in_value 0 at 87 ns
+Stimuli3 : in_valid = true in_value 1 at 88 ns
+Stimuli3 : in_valid = true in_value 2 at 89 ns
+Stimuli3 : in_valid = true in_value 3 at 90 ns
+Stimuli3 : in_valid = true in_value 4 at 91 ns
+Stimuli3 : in_valid = true in_value 5 at 92 ns
+Display : 10 at 92 ns
+Stimuli3 : in_valid = true in_value 6 at 93 ns
+Display : 4 at 93 ns
+Stimuli3 : in_valid = true in_value 7 at 94 ns
+Display : 5 at 94 ns
+Stimuli3 : in_valid = true in_value 8 at 95 ns
+Display : 6 at 95 ns
+Stimuli3 : in_valid = true in_value 9 at 96 ns
+Display : 6 at 96 ns
+Stimuli3 : in_valid = true in_value 10 at 97 ns
+Stimuli1 : in_valid = true in_value 0 at 108 ns
+Stimuli1 : in_valid = true in_value 1 at 109 ns
+Stimuli1 : in_valid = true in_value 2 at 110 ns
+Display : 6 at 110 ns
+Stimuli1 : in_valid = true in_value 3 at 111 ns
+Display : 1 at 111 ns
+Stimuli1 : in_valid = true in_value 4 at 112 ns
+Display : 2 at 112 ns
+Stimuli1 : in_valid = true in_value 5 at 113 ns
+Display : 3 at 113 ns
+Stimuli1 : in_valid = true in_value 6 at 114 ns
+Display : 4 at 114 ns
+Stimuli1 : in_valid = true in_value 7 at 115 ns
+Display : 5 at 115 ns
+Stimuli1 : in_valid = true in_value 8 at 116 ns
+Display : 6 at 116 ns
+Stimuli1 : in_valid = true in_value 9 at 117 ns
+Display : 7 at 117 ns
+Stimuli1 : in_valid = true in_value 10 at 118 ns
+Display : 8 at 118 ns
+Display : 9 at 119 ns
+Display : 10 at 120 ns
+Stimuli2 : in_valid = true in_value 0 at 123 ns
+Stimuli2 : in_valid = true in_value 1 at 124 ns
+Stimuli2 : in_valid = true in_value 2 at 125 ns
+Stimuli2 : in_valid = true in_value 3 at 126 ns
+Display : 10 at 126 ns
+Stimuli2 : in_valid = true in_value 4 at 127 ns
+Display : 10 at 127 ns
+Stimuli2 : in_valid = true in_value 5 at 128 ns
+Display : 10 at 128 ns
+Stimuli2 : in_valid = true in_value 6 at 129 ns
+Display : 10 at 129 ns
+Stimuli2 : in_valid = true in_value 7 at 130 ns
+Display : 5 at 130 ns
+Stimuli2 : in_valid = true in_value 8 at 131 ns
+Display : 6 at 131 ns
+Stimuli2 : in_valid = true in_value 9 at 132 ns
+Display : 7 at 132 ns
+Stimuli2 : in_valid = true in_value 10 at 133 ns
+Display : 8 at 133 ns
+Display : 8 at 134 ns
+Display : 10 at 135 ns
+Display : 10 at 136 ns
+Display : 10 at 137 ns
+Stimuli3 : in_valid = true in_value 0 at 138 ns
+Stimuli3 : in_valid = true in_value 1 at 139 ns
+Stimuli3 : in_valid = true in_value 2 at 140 ns
+Stimuli3 : in_valid = true in_value 3 at 141 ns
+Stimuli3 : in_valid = true in_value 4 at 142 ns
+Stimuli3 : in_valid = true in_value 5 at 143 ns
+Display : 10 at 143 ns
+Stimuli3 : in_valid = true in_value 6 at 144 ns
+Display : 4 at 144 ns
+Stimuli3 : in_valid = true in_value 7 at 145 ns
+Display : 5 at 145 ns
+Stimuli3 : in_valid = true in_value 8 at 146 ns
+Display : 6 at 146 ns
+Stimuli3 : in_valid = true in_value 9 at 147 ns
+Display : 6 at 147 ns
+Stimuli3 : in_valid = true in_value 10 at 148 ns
+
+Info: /OSCI/SystemC: Simulation stopped by user.
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/main.cpp b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/main.cpp
new file mode 100644
index 000000000..259079b39
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/main.cpp
@@ -0,0 +1,82 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ main.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-27
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "while_datatypes.h"
+#include "stimulus.h"
+#include "display.h"
+
+int sc_main (int argc , char *argv[]) {
+ sc_clock clock;
+ sc_signal<bool> reset;
+ sc_signal<bool> out_valid;
+ sc_signal<bool> in_valid;
+ sc_signal<int> result;
+ sc_signal<int> in_value;
+
+
+ while_datatypes while_datatypes1 (
+ "process_body",
+ clock,
+ reset,
+ in_valid,
+ in_value,
+ out_valid,
+ result
+ );
+
+ stimulus stimulus1 (
+ "stimulus",
+ clock,
+ reset,
+ in_value,
+ in_valid
+ );
+
+ display display1 (
+ "display",
+ clock,
+ result,
+ out_valid
+ );
+
+
+ sc_start();
+ return 0;
+}
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/stimulus.cpp b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/stimulus.cpp
new file mode 100644
index 000000000..af5159663
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/stimulus.cpp
@@ -0,0 +1,83 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ stimulus.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-27
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "stimulus.h"
+
+void stimulus::entry() {
+
+ int i, j;
+
+ // sending some reset values
+ reset.write(true);
+ in_valid.write(false);
+ in_value.write(0);
+ wait();
+ reset.write(false);
+ wait(5);
+ for(i=0; i<3; i++){
+ in_valid.write(true);
+ for(j=0; j<=10; j++) {
+ in_value.write(j);
+ cout << "Stimuli1 : in_valid = true in_value " << j << " at "
+ << sc_time_stamp() << endl;
+ wait();
+ };
+ in_valid.write(false);
+ wait(4);
+ for(j=0; j<=10; j++) {
+ in_value.write(j);
+ cout << "Stimuli2 : in_valid = true in_value " << j << " at "
+ << sc_time_stamp() << endl;
+ wait();
+ };
+ in_valid.write(false);
+ wait(4);
+ for(j=0; j<=10; j++) {
+ in_value.write(j);
+ cout << "Stimuli3 : in_valid = true in_value " << j << " at "
+ << sc_time_stamp() << endl;
+ wait();
+ };
+ wait(10);
+ };
+
+ wait(15);
+ sc_stop();
+}
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/stimulus.h b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/stimulus.h
new file mode 100644
index 000000000..e20114c36
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/stimulus.h
@@ -0,0 +1,69 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ stimulus.h --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-27
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "systemc.h"
+
+SC_MODULE( stimulus )
+{
+ SC_HAS_PROCESS( stimulus );
+
+ sc_in_clk clk;
+
+ sc_signal<bool>& reset;
+ sc_signal<int>& in_value;
+ sc_signal<bool>& in_valid;
+
+ stimulus(sc_module_name NAME,
+ sc_clock& CLK,
+ sc_signal<bool>& RESET,
+ sc_signal<int>& IN_VALUE,
+ sc_signal<bool>& IN_VALID
+ )
+ :
+ reset (RESET),
+ in_value (IN_VALUE),
+ in_valid (IN_VALID)
+ {
+ clk (CLK);
+ SC_CTHREAD( entry, clk.pos() );
+ }
+
+ void entry();
+};
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/while_datatypes.cpp b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/while_datatypes.cpp
new file mode 100644
index 000000000..e0b1ae585
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/while_datatypes.cpp
@@ -0,0 +1,120 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ while_datatypes.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-29
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "while_datatypes.h"
+
+#define max 10
+
+void while_datatypes::entry()
+{
+
+ int i, inp_tmp;
+ sc_signed signed_counter(8);
+ sc_unsigned unsigned_counter(8);
+
+ // reset_loop
+ if (reset.read()==true) {
+ result.write(0);
+ out_valid.write(false);
+ wait();
+ } else wait();
+
+ //----------
+ // main loop
+ //----------
+ while(1) {
+
+ // read inputs
+ while (in_valid.read()==false) wait();
+
+ // execution of for loop
+ out_valid.write(true);
+ i=1;
+ wait();
+ while (i<=max) {
+ inp_tmp = in_value.read();
+ result.write(inp_tmp);
+ i++;
+ wait();
+ };
+ out_valid.write(false);
+ wait(5);
+
+ // execution of for loop with continues
+ out_valid.write(true);
+ signed_counter=0;
+ wait();
+ do {
+ signed_counter++;
+ inp_tmp = in_value.read();
+ if (signed_counter==8) {
+ wait();
+ continue;
+ } else if (in_value.read()<5) {
+ wait();
+ continue;
+ } else {
+ result.write(inp_tmp);
+ wait();
+ }
+ } while (signed_counter.to_int()<=max);
+ out_valid.write(false);
+ wait(5);
+
+ // for loop with break
+ out_valid.write(true);
+ wait();
+ unsigned_counter=0;
+ do {
+ unsigned_counter++;
+ inp_tmp = in_value.read();
+ if (inp_tmp==7) {
+ wait();
+ break;
+ } else {
+ result.write(inp_tmp);
+ wait();
+ };
+ } while (unsigned_counter.to_uint()<=max);
+ out_valid.write(false);
+ wait();
+ }
+}
+
+// EOF
+
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/while_datatypes.f b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/while_datatypes.f
new file mode 100644
index 000000000..bdd5c8d62
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/while_datatypes.f
@@ -0,0 +1,4 @@
+while_datatypes/main.cpp
+while_datatypes/stimulus.cpp
+while_datatypes/display.cpp
+while_datatypes/while_datatypes.cpp
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/while_datatypes.h b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/while_datatypes.h
new file mode 100644
index 000000000..40c6642b5
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/loop/while_datatypes/while_datatypes.h
@@ -0,0 +1,74 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ while_datatypes.h --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-27
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "systemc.h"
+
+SC_MODULE( while_datatypes )
+{
+ SC_HAS_PROCESS( while_datatypes );
+
+ sc_in_clk clk;
+
+ const sc_signal<bool>& reset;
+ const sc_signal<bool>& in_valid;
+ const sc_signal<int>& in_value;
+ sc_signal<bool>& out_valid;
+ sc_signal<int>& result;
+
+ while_datatypes (
+ sc_module_name NAME, // referense name
+ sc_clock& CLK, // clock
+ const sc_signal<bool>& RESET,
+ const sc_signal<bool>& IN_VALID,
+ const sc_signal<int>& IN_VALUE,
+ sc_signal<bool>& OUT_VALID,
+ sc_signal<int>& RESULT
+ )
+ :
+ reset (RESET),
+ in_valid (IN_VALID),
+ in_value (IN_VALUE),
+ out_valid (OUT_VALID),
+ result (RESULT)
+ {
+ clk (CLK);
+ SC_CTHREAD( entry, clk.pos() );
+ reset_signal_is(reset,true);
+ };
+ void entry ();
+};