summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions')
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/common.h45
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/conditions.cpp129
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/conditions.f4
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/conditions.h108
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/display.cpp61
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/display.h78
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/golden/conditions.log35
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/main.cpp106
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/stimulus.cpp73
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/stimulus.h81
10 files changed, 720 insertions, 0 deletions
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/common.h b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/common.h
new file mode 100644
index 000000000..2a4edbad5
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/common.h
@@ -0,0 +1,45 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ common.h --
+
+ Original Author: Martin Janssen, Synopsys, Inc., 2002-02-15
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+#ifndef COMMON_H
+#define COMMON_H
+
+#include "systemc.h"
+
+typedef sc_signal<sc_bv<4> > sc_signal_bool_vector;
+
+#endif
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/conditions.cpp b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/conditions.cpp
new file mode 100644
index 000000000..5ecc74334
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/conditions.cpp
@@ -0,0 +1,129 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ conditions.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "conditions.h"
+
+void conditions::entry(){
+
+ sc_biguint<4> tmp1;
+ sc_bigint<4> tmp2;
+ sc_biguint<4> tmp2a;
+ sc_lv<4> tmp3;
+ sc_bv<4> tmp4;
+ int tmp5;
+ bool cond_tmp;
+
+ // reset_loop
+ if (reset.read() == true) {
+ out_value1.write(0);
+ out_value2.write(0);
+ out_value3.write(0);
+ out_value4.write(0);
+ out_value5.write(0);
+ out_valid.write(false);
+ wait();
+ } else wait();
+
+ //
+ // main loop
+ //
+ while(1) {
+ do { wait(); } while (in_valid == false);
+
+ //reading inputs
+ tmp1 = in_value1.read();
+ tmp2 = in_value2.read();
+ tmp4 = in_value4.read();
+ tmp5 = in_value5.read();
+
+ // complex condition on variables
+ if ((tmp1==4) && (tmp2<6) || (tmp5+tmp4.to_int()==6)) {
+ out_value1.write(4);
+ } else {
+ out_value1.write(tmp1);
+ };
+ wait();
+
+ // complex conditions on signal reads
+ if ((in_value1.read().to_uint()==4) && (in_value2.read().to_int()<6) ||
+ (in_value4.read().to_int()+in_value5.read()==6)) {
+ out_value2.write(4);
+ } else {
+ out_value2.write(tmp1);
+ };
+ wait();
+
+ //reading inputs
+ tmp1 = in_value1.read();
+ tmp2 = in_value2.read();
+ tmp3 = in_value3.read();
+ tmp4 = in_value4.read();
+ tmp5 = in_value5.read();
+
+ // complex conditions outside the if; does it matter for timing?
+ cond_tmp = (tmp1==4) && (tmp2<6) || (tmp5+tmp4.to_int()==6);
+ if (cond_tmp) {
+ out_value3.write(4);
+ } else {
+ out_value3.write(tmp1);
+ };
+ wait();
+
+ // arithmetic if can only be done when using the same datatypes
+ // therefor the temporary assignment
+ tmp2a = 0;
+ out_value4.write((tmp3.to_int()==4) && (tmp1<6) ||
+ (tmp5+tmp2.to_int()==6)?tmp2a:tmp1);
+ wait();
+
+ // arithmetic if can only be done when using the same datatypes
+ // therefor the temporary assignment
+ tmp5 = tmp2.to_int();
+ out_value5.write((in_value3.read().to_int()==4) &&
+ (in_value1.read().to_int()<6) ||
+ (in_value5.read()+in_value2.read().to_int()==6)?
+ 0:tmp5);
+ out_valid.write(true);
+ wait();
+ out_valid.write(false);
+
+ }
+}
+
+// EOF
+
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/conditions.f b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/conditions.f
new file mode 100644
index 000000000..ed7a236e6
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/conditions.f
@@ -0,0 +1,4 @@
+conditions/display.cpp
+conditions/stimulus.cpp
+conditions/main.cpp
+conditions/conditions.cpp
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/conditions.h b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/conditions.h
new file mode 100644
index 000000000..f2ceadb83
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/conditions.h
@@ -0,0 +1,108 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ conditions.h --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "common.h"
+
+SC_MODULE( conditions )
+{
+ SC_HAS_PROCESS( conditions );
+
+ sc_in_clk clk;
+
+ const sc_signal<bool>& reset ;
+ const sc_signal_bool_vector& in_value1;
+ const sc_signal_bool_vector& in_value2;
+ const sc_signal_bool_vector& in_value3;
+ const sc_signal_bool_vector& in_value4;
+ const sc_signal<int>& in_value5 ;
+ const sc_signal<bool>& in_valid;
+ sc_signal_bool_vector& out_value1;
+ sc_signal_bool_vector& out_value2;
+ sc_signal_bool_vector& out_value3;
+ sc_signal_bool_vector& out_value4;
+ sc_signal<int>& out_value5;
+ sc_signal<bool>& out_valid;
+
+ //
+ // Constructor
+ //
+
+ conditions(
+ sc_module_name NAME, // referense name
+ sc_clock& CLK, // clock
+ const sc_signal<bool>& RESET,
+ const sc_signal_bool_vector& IN_VALUE1,
+ const sc_signal_bool_vector& IN_VALUE2,
+ const sc_signal_bool_vector& IN_VALUE3,
+ const sc_signal_bool_vector& IN_VALUE4,
+ const sc_signal<int>& IN_VALUE5,
+ const sc_signal<bool>& IN_VALID, // Input port
+ sc_signal_bool_vector& OUT_VALUE1,
+ sc_signal_bool_vector& OUT_VALUE2,
+ sc_signal_bool_vector& OUT_VALUE3,
+ sc_signal_bool_vector& OUT_VALUE4,
+ sc_signal<int>& OUT_VALUE5,
+ sc_signal<bool>& OUT_VALID // Input port
+ )
+ :
+ reset (RESET),
+ in_value1 (IN_VALUE1),
+ in_value2 (IN_VALUE2),
+ in_value3 (IN_VALUE3),
+ in_value4 (IN_VALUE4),
+ in_value5 (IN_VALUE5),
+ in_valid (IN_VALID),
+ out_value1 (OUT_VALUE1),
+ out_value2 (OUT_VALUE2),
+ out_value3 (OUT_VALUE3),
+ out_value4 (OUT_VALUE4),
+ out_value5 (OUT_VALUE5),
+ out_valid (OUT_VALID)
+ {
+ clk (CLK);
+ SC_CTHREAD( entry, clk.pos() );
+ reset_signal_is(reset,true);
+ };
+
+ //
+
+ void entry ();
+
+};
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/display.cpp b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/display.cpp
new file mode 100644
index 000000000..fc643330d
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/display.cpp
@@ -0,0 +1,61 @@
+/*****************************************************************************
+
+ 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-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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(){
+ int i = 0;
+
+ wait(2);
+ while(1) {
+ // Reading Data, and Counter i,j is counted up.
+ while (in_valid.read()==false) wait();
+ cout << "Display : " << in_data1.read() << " "
+ << in_data2.read() << " "
+ << in_data3.read() << " "
+ << in_data4.read() << " "
+ << in_data5.read() << " "
+ << " at " << sc_time_stamp() << endl;
+ i++;
+ if(i == 24) sc_stop();
+ wait();
+ }
+}
+
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/display.h b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/display.h
new file mode 100644
index 000000000..36001ab41
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/display.h
@@ -0,0 +1,78 @@
+/*****************************************************************************
+
+ 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-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "common.h"
+
+SC_MODULE( display )
+{
+ SC_HAS_PROCESS( display );
+
+ sc_in_clk clk;
+
+ const sc_signal_bool_vector& in_data1; // Input port
+ const sc_signal_bool_vector& in_data2; // Input port
+ const sc_signal_bool_vector& in_data3; // Input port
+ const sc_signal_bool_vector& in_data4; // Input port
+ const sc_signal<int>& in_data5; // Input port
+ const sc_signal<bool>& in_valid;
+
+ display( sc_module_name NAME,
+ sc_clock& CLK,
+ const sc_signal_bool_vector& IN_DATA1,
+ const sc_signal_bool_vector& IN_DATA2,
+ const sc_signal_bool_vector& IN_DATA3,
+ const sc_signal_bool_vector& IN_DATA4,
+ const sc_signal<int>& IN_DATA5,
+ const sc_signal<bool>& IN_VALID
+ )
+ :
+ in_data1(IN_DATA1),
+ in_data2(IN_DATA2),
+ in_data3(IN_DATA3),
+ in_data4(IN_DATA4),
+ in_data5(IN_DATA5),
+ 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/if_test/conditions/golden/conditions.log b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/golden/conditions.log
new file mode 100644
index 000000000..3432fae28
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/golden/conditions.log
@@ -0,0 +1,35 @@
+SystemC Simulation
+Stimuli: stim1= 0 stim2= 0 stim3= 0 stim4= 0 stim5= 0 2 ns
+Display : 0000 0000 0000 0000 0 at 8 ns
+Stimuli: stim1= 1 stim2= 1 stim3= 1 stim4= 1 stim5= 1 13 ns
+Display : 0001 0001 0001 0001 1 at 19 ns
+Stimuli: stim1= 2 stim2= 2 stim3= 2 stim4= 2 stim5= 2 24 ns
+Display : 0010 0010 0010 0010 2 at 30 ns
+Stimuli: stim1= 3 stim2= 3 stim3= 3 stim4= 3 stim5= 3 35 ns
+Display : 0100 0100 0100 0000 0 at 41 ns
+Stimuli: stim1= 4 stim2= 4 stim3= 4 stim4= 4 stim5= 4 46 ns
+Display : 0100 0100 0100 0000 0 at 52 ns
+Stimuli: stim1= 5 stim2= 5 stim3= 5 stim4= 5 stim5= 5 57 ns
+Display : 0101 0101 0101 0101 5 at 63 ns
+Stimuli: stim1= 6 stim2= 6 stim3= 6 stim4= 6 stim5= 6 68 ns
+Display : 0110 0110 0110 0110 6 at 74 ns
+Stimuli: stim1= 7 stim2= 7 stim3= 7 stim4= 7 stim5= 7 79 ns
+Display : 0111 0111 0111 0111 7 at 85 ns
+Stimuli: stim1= 8 stim2= 8 stim3= 8 stim4= 8 stim5= 8 90 ns
+Display : 1000 1000 1000 1000 -8 at 96 ns
+Stimuli: stim1= 9 stim2= 9 stim3= 9 stim4= 9 stim5= 9 101 ns
+Display : 1001 1001 1001 1001 -7 at 107 ns
+Stimuli: stim1= 10 stim2= 10 stim3= 10 stim4= 10 stim5= 10 112 ns
+Display : 1010 1010 1010 1010 -6 at 118 ns
+Stimuli: stim1= 11 stim2= 11 stim3= 11 stim4= 11 stim5= 11 123 ns
+Display : 0100 0100 0100 0000 0 at 129 ns
+Stimuli: stim1= 12 stim2= 12 stim3= 12 stim4= 12 stim5= 12 134 ns
+Display : 1100 1100 1100 1100 -4 at 140 ns
+Stimuli: stim1= 13 stim2= 13 stim3= 13 stim4= 13 stim5= 13 145 ns
+Display : 1101 1101 1101 1101 -3 at 151 ns
+Stimuli: stim1= 14 stim2= 14 stim3= 14 stim4= 14 stim5= 14 156 ns
+Display : 1110 1110 1110 1110 -2 at 162 ns
+Stimuli: stim1= 15 stim2= 15 stim3= 15 stim4= 15 stim5= 15 167 ns
+Display : 1111 1111 1111 1111 -1 at 173 ns
+
+Info: /OSCI/SystemC: Simulation stopped by user.
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/main.cpp b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/main.cpp
new file mode 100644
index 000000000..bbb3a183b
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/main.cpp
@@ -0,0 +1,106 @@
+/*****************************************************************************
+
+ 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-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "conditions.h"
+#include "stimulus.h"
+#include "display.h"
+
+int sc_main (int argc , char *argv[]) {
+ sc_clock clock;
+ sc_signal<bool> reset;
+ sc_signal_bool_vector stim1;
+ sc_signal_bool_vector stim2;
+ sc_signal_bool_vector stim3;
+ sc_signal_bool_vector stim4;
+ sc_signal<int> stim5;
+ sc_signal<bool> input_valid;
+ sc_signal_bool_vector result1;
+ sc_signal_bool_vector result2;
+ sc_signal_bool_vector result3;
+ sc_signal_bool_vector result4;
+ sc_signal<int> result5;
+ sc_signal<bool> output_valid;
+
+
+
+ conditions conditions1 (
+ "process_body",
+ clock,
+ reset,
+ stim1,
+ stim2,
+ stim3,
+ stim4,
+ stim5,
+ input_valid,
+ result1,
+ result2,
+ result3,
+ result4,
+ result5,
+ output_valid
+ );
+
+ stimulus stimulus1 (
+ "stimulus",
+ clock,
+ reset,
+ stim1,
+ stim2,
+ stim3,
+ stim4,
+ stim5,
+ input_valid
+ );
+
+ display display1 (
+ "display",
+ clock,
+ result1,
+ result2,
+ result3,
+ result4,
+ result5,
+ output_valid
+ );
+
+ sc_start();
+ return 0;
+}
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/stimulus.cpp b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/stimulus.cpp
new file mode 100644
index 000000000..f45313792
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/stimulus.cpp
@@ -0,0 +1,73 @@
+/*****************************************************************************
+
+ 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-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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;
+
+ // sending some reset values
+ reset.write(true);
+ stim1.write(0);
+ stim2.write(0);
+ stim3.write(0);
+ stim4.write(0);
+ stim5.write(0);
+ wait();
+ reset.write(false);
+ wait();
+ for (i=0; i<= 15; i++) {
+ stim1.write(i);
+ stim2.write(i);
+ stim3.write(i);
+ stim4.write(i);
+ stim5.write(i);
+ input_valid.write(true);
+ cout << "Stimuli: stim1= " << i << " stim2= " << i << " stim3= "
+ << i << " stim4= " << i << " stim5= " << i << " "
+ << sc_time_stamp() << endl;
+ wait();
+ input_valid.write(false);
+ wait(10);
+ }
+
+ sc_stop();
+}
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/stimulus.h b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/stimulus.h
new file mode 100644
index 000000000..813c53e1b
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/stimulus.h
@@ -0,0 +1,81 @@
+/*****************************************************************************
+
+ 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-22
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "common.h"
+
+SC_MODULE( stimulus )
+{
+ SC_HAS_PROCESS( stimulus );
+
+ sc_in_clk clk;
+
+ sc_signal<bool>& reset;
+ sc_signal_bool_vector& stim1;
+ sc_signal_bool_vector& stim2;
+ sc_signal_bool_vector& stim3;
+ sc_signal_bool_vector& stim4;
+ sc_signal<int>& stim5;
+ sc_signal<bool>& input_valid;
+
+ stimulus(sc_module_name NAME,
+ sc_clock& CLK,
+ sc_signal<bool>& RESET,
+ sc_signal_bool_vector& STIM1,
+ sc_signal_bool_vector& STIM2,
+ sc_signal_bool_vector& STIM3,
+ sc_signal_bool_vector& STIM4,
+ sc_signal<int>& STIM5,
+ sc_signal<bool>& INPUT_VALID
+ )
+ :
+ reset(RESET),
+ stim1(STIM1),
+ stim2(STIM2),
+ stim3(STIM3),
+ stim4(STIM4),
+ stim5(STIM5),
+ input_valid(INPUT_VALID)
+ {
+ clk(CLK);
+ SC_CTHREAD( entry, clk.pos() );
+ }
+
+ void entry();
+};
+
+// EOF