summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl')
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/bitwidth.cpp100
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/bitwidth.f4
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/bitwidth.h121
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/common.h47
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/display.cpp63
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/display.h81
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/golden/bitwidth.log27
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/main.cpp104
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/stimulus.cpp95
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/stimulus.h84
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/common.h45
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/datatypes.cpp150
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/datatypes.f4
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/datatypes.h126
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/display.cpp50
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/display.h87
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/golden/datatypes.log203
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/golden/datatypes.log.linuxaarch64203
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/main.cpp109
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/stimulus.cpp85
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/stimulus.h90
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/common.h45
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/display.cpp50
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/display.h87
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/golden/sharing.logbin0 -> 7111 bytes
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/main.cpp109
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/sharing.cpp150
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/sharing.f4
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/sharing.h126
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/stimulus.cpp85
-rw-r--r--src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/stimulus.h90
31 files changed, 2624 insertions, 0 deletions
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/bitwidth.cpp b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/bitwidth.cpp
new file mode 100644
index 000000000..7cb14c66c
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/bitwidth.cpp
@@ -0,0 +1,100 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ bitwidth.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "bitwidth.h"
+
+void bitwidth::entry(){
+
+ sc_bigint<4> tmp1;
+ sc_biguint<4> tmp2;
+ sc_bigint<6> tmp3;
+ sc_biguint<6> tmp4;
+ sc_bigint<8> tmp5;
+ sc_biguint<8> tmp6;
+
+ // reset_loop
+ if (reset.read() == true) {
+ out_valid.write(false);
+ wait();
+ } else wait();
+
+ //
+ // main loop
+ //
+ //
+ while(1) {
+ while(in_valid.read()==false) wait();
+ wait();
+
+ //reading the inputs
+ tmp1 = in_value1.read();
+ tmp2 = in_value2.read();
+ tmp3 = in_value3.read();
+ tmp4 = in_value4.read();
+ tmp5 = in_value5.read();
+ tmp6 = in_value6.read();
+
+ //execute simple operations
+ // expected bitwidth 4 4 4 signed
+ tmp1 = tmp1 << tmp2;
+ // expected bitwidth 4 6 6 signed
+ tmp3 = tmp1 << tmp2;
+ // expected bitwidth 4 4 6 signed
+ tmp6 = tmp2 << tmp6;
+ // expected bitwidth 8 8 6 signed
+ tmp4 = tmp5 << tmp6;
+ // expected bitwidth 6 8 4 unsigned
+ tmp2 = tmp4 << tmp6;
+ wait();
+
+ // write outputs
+ out_value1.write(tmp1);
+ out_value2.write(tmp2);
+ out_value3.write(tmp3);
+ out_value4.write(tmp4);
+ out_value5.write(tmp5);
+ out_value6.write(tmp6);
+ out_valid.write(true);
+ wait();
+ out_valid.write(false);
+ wait();
+ }
+}
+
+// EOF
+
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/bitwidth.f b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/bitwidth.f
new file mode 100644
index 000000000..53a59162e
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/bitwidth.f
@@ -0,0 +1,4 @@
+bitwidth/stimulus.cpp
+bitwidth/display.cpp
+bitwidth/bitwidth.cpp
+bitwidth/main.cpp
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/bitwidth.h b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/bitwidth.h
new file mode 100644
index 000000000..e088b3a4a
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/bitwidth.h
@@ -0,0 +1,121 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ bitwidth.h --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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( bitwidth )
+{
+ SC_HAS_PROCESS( bitwidth );
+
+ sc_in_clk clk;
+
+ //====================================================================
+ // [C] Always Needed Member Function
+ // -- constructor
+ // -- entry
+ //====================================================================
+
+ const sc_signal<bool>& reset ;
+ const sc_signal_bool_vector4& in_value1; // Input port
+ const sc_signal_bool_vector4& in_value2; // Input port
+ const sc_signal_bool_vector6& in_value3; // Input port
+ const sc_signal_bool_vector6& in_value4; // Input port
+ const sc_signal_bool_vector8& in_value5; // Input port
+ const sc_signal_bool_vector8& in_value6; // Input port
+ const sc_signal<bool>& in_valid; // Input port
+ sc_signal_bool_vector4& out_value1; // Output port
+ sc_signal_bool_vector4& out_value2; // Output port
+ sc_signal_bool_vector6& out_value3; // Output port
+ sc_signal_bool_vector6& out_value4; // Output port
+ sc_signal_bool_vector8& out_value5; // Output port
+ sc_signal_bool_vector8& out_value6; // Output port
+ sc_signal<bool>& out_valid; // Output port
+
+ //
+ // Constructor
+ //
+
+ bitwidth (
+ sc_module_name NAME, // referense name
+ sc_clock& CLK, // clock
+ const sc_signal<bool>& RESET,
+ const sc_signal_bool_vector4& IN_VALUE1,
+ const sc_signal_bool_vector4& IN_VALUE2,
+ const sc_signal_bool_vector6& IN_VALUE3,
+ const sc_signal_bool_vector6& IN_VALUE4,
+ const sc_signal_bool_vector8& IN_VALUE5,
+ const sc_signal_bool_vector8& IN_VALUE6,
+ const sc_signal<bool>& IN_VALID, // Input port
+ sc_signal_bool_vector4& OUT_VALUE1,
+ sc_signal_bool_vector4& OUT_VALUE2,
+ sc_signal_bool_vector6& OUT_VALUE3,
+ sc_signal_bool_vector6& OUT_VALUE4,
+ sc_signal_bool_vector8& OUT_VALUE5,
+ sc_signal_bool_vector8& OUT_VALUE6,
+ sc_signal<bool>& OUT_VALID // Output port
+ )
+ :
+ reset (RESET),
+ in_value1 (IN_VALUE1),
+ in_value2 (IN_VALUE2),
+ in_value3 (IN_VALUE3),
+ in_value4 (IN_VALUE4),
+ in_value5 (IN_VALUE5),
+ in_value6 (IN_VALUE6),
+ 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_value6 (OUT_VALUE6),
+ 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/bitwise/shl/bitwidth/common.h b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/common.h
new file mode 100644
index 000000000..2a49981d9
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/common.h
@@ -0,0 +1,47 @@
+/*****************************************************************************
+
+ 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_vector4;
+typedef sc_signal<sc_bv<6> > sc_signal_bool_vector6;
+typedef sc_signal<sc_bv<8> > sc_signal_bool_vector8;
+
+#endif
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/display.cpp b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/display.cpp
new file mode 100644
index 000000000..17eba10b1
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/display.cpp
@@ -0,0 +1,63 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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() << " "
+ << in_data6.read() << " "
+ << " at " << sc_time_stamp() << endl;
+
+ i++;
+ if(i == 12) sc_stop();
+ wait();
+ }
+}
+
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/display.h b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/display.h
new file mode 100644
index 000000000..922ed13a9
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/display.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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ display.h --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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_vector4& in_data1; // Input port
+ const sc_signal_bool_vector4& in_data2; // Input port
+ const sc_signal_bool_vector6& in_data3; // Input port
+ const sc_signal_bool_vector6& in_data4; // Input port
+ const sc_signal_bool_vector8& in_data5; // Input port
+ const sc_signal_bool_vector8& in_data6; // Input port
+ const sc_signal<bool>& in_valid;
+
+ display( sc_module_name NAME,
+ sc_clock& CLK,
+ const sc_signal_bool_vector4& IN_DATA1,
+ const sc_signal_bool_vector4& IN_DATA2,
+ const sc_signal_bool_vector6& IN_DATA3,
+ const sc_signal_bool_vector6& IN_DATA4,
+ const sc_signal_bool_vector8& IN_DATA5,
+ const sc_signal_bool_vector8& IN_DATA6,
+ 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_data6(IN_DATA6),
+ 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/bitwise/shl/bitwidth/golden/bitwidth.log b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/golden/bitwidth.log
new file mode 100644
index 000000000..ad7d0b4fd
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/golden/bitwidth.log
@@ -0,0 +1,27 @@
+SystemC Simulation
+Stimuli : 1 1 1 1 1 1 at 23 ns
+Display : 0010 0000 000100 000100 00000001 00000010 at 27 ns
+Stimuli : 3 3 3 3 3 3 at 44 ns
+Display : 1000 0000 000000 000000 00000011 00011000 at 48 ns
+Stimuli : 5 5 5 5 5 5 at 65 ns
+Display : 0000 0000 000000 000000 00000101 10100000 at 69 ns
+Stimuli : 7 7 7 7 7 7 at 86 ns
+Display : 0000 0000 000000 000000 00000111 10000000 at 90 ns
+Stimuli : -7 9 9 9 9 9 at 107 ns
+Display : 0000 1001 000000 001001 00001001 00000000 at 111 ns
+Stimuli : -5 11 11 11 11 11 at 128 ns
+Display : 0000 1011 000000 001011 00001011 00000000 at 132 ns
+Stimuli : -3 13 13 13 13 13 at 149 ns
+Display : 0000 1101 000000 001101 00001101 00000000 at 153 ns
+Stimuli : -1 15 15 15 15 15 at 170 ns
+Display : 0000 1111 000000 001111 00001111 00000000 at 174 ns
+Stimuli : 1 1 17 17 17 17 at 191 ns
+Display : 0010 0001 000100 010001 00010001 00000000 at 195 ns
+Stimuli : 3 3 19 19 19 19 at 212 ns
+Display : 1000 0011 000000 010011 00010011 00000000 at 216 ns
+Stimuli : 5 5 21 21 21 21 at 233 ns
+Display : 0000 0101 000000 010101 00010101 00000000 at 237 ns
+Stimuli : 7 7 23 23 23 23 at 254 ns
+Display : 0000 0111 000000 010111 00010111 00000000 at 258 ns
+
+Info: /OSCI/SystemC: Simulation stopped by user.
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/main.cpp b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/main.cpp
new file mode 100644
index 000000000..8a7ff91be
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/main.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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ main.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "stimulus.h"
+#include "display.h"
+#include "bitwidth.h"
+
+int sc_main (int argc , char *argv[]) {
+ sc_clock clock;
+ sc_signal<bool> reset;
+ sc_signal_bool_vector4 stimulus_line1;
+ sc_signal_bool_vector4 stimulus_line2;
+ sc_signal_bool_vector6 stimulus_line3;
+ sc_signal_bool_vector6 stimulus_line4;
+ sc_signal_bool_vector8 stimulus_line5;
+ sc_signal_bool_vector8 stimulus_line6;
+ sc_signal<bool> input_valid;
+ sc_signal<bool> output_valid;
+ sc_signal_bool_vector4 result_line1;
+ sc_signal_bool_vector4 result_line2;
+ sc_signal_bool_vector6 result_line3;
+ sc_signal_bool_vector6 result_line4;
+ sc_signal_bool_vector8 result_line5;
+ sc_signal_bool_vector8 result_line6;
+
+ stimulus stimulus1("stimulus_block",
+ clock,
+ reset,
+ stimulus_line1,
+ stimulus_line2,
+ stimulus_line3,
+ stimulus_line4,
+ stimulus_line5,
+ stimulus_line6,
+ input_valid);
+
+ bitwidth bitwidth1 ( "process_body",
+ clock,
+ reset,
+ stimulus_line1,
+ stimulus_line2,
+ stimulus_line3,
+ stimulus_line4,
+ stimulus_line5,
+ stimulus_line6,
+ input_valid,
+ result_line1,
+ result_line2,
+ result_line3,
+ result_line4,
+ result_line5,
+ result_line6,
+ output_valid);
+
+ display display1 ( "display",
+ clock,
+ result_line1,
+ result_line2,
+ result_line3,
+ result_line4,
+ result_line5,
+ result_line6,
+ output_valid);
+
+ sc_start();
+ return 0;
+}
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/stimulus.cpp b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/stimulus.cpp
new file mode 100644
index 000000000..3d7567c14
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/stimulus.cpp
@@ -0,0 +1,95 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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() {
+ sc_signed send_value1(4);
+ sc_unsigned send_value2(4);
+ sc_signed send_value3(6);
+ sc_unsigned send_value4(6);
+ sc_signed send_value5(8);
+ sc_unsigned send_value6(8);
+
+
+ // sending some reset values
+ reset.write(true);
+ out_valid.write(false);
+ send_value1 = 1;
+ send_value2 = 1;
+ send_value3 = 1;
+ send_value4 = 1;
+ send_value5 = 1;
+ send_value6 = 1;
+ out_stimulus1.write(1);
+ out_stimulus2.write(1);
+ out_stimulus3.write(1);
+ out_stimulus4.write(1);
+ out_stimulus5.write(1);
+ out_stimulus6.write(1);
+ wait(3);
+ reset.write(false);
+ // sending normal mode values
+ while(true){
+ wait(20);
+ out_stimulus1.write( send_value1 );
+ out_stimulus2.write( send_value2 );
+ out_stimulus3.write( send_value3 );
+ out_stimulus4.write( send_value4 );
+ out_stimulus5.write( send_value5 );
+ out_stimulus6.write( send_value6 );
+ out_valid.write( true );
+ cout << "Stimuli : " << send_value1 << " "
+ << send_value2 << " "
+ << send_value3 << " "
+ << send_value4 << " "
+ << send_value5 << " "
+ << send_value6 << " " << " at "
+ << sc_time_stamp() << endl;
+ send_value1 = send_value1+2;
+ send_value2 = send_value2+2;
+ send_value3 = send_value3+2;
+ send_value4 = send_value4+2;
+ send_value5 = send_value5+2;
+ send_value6 = send_value6+2;
+ wait();
+ out_valid.write( false );
+ }
+}
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/stimulus.h b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/stimulus.h
new file mode 100644
index 000000000..fa0b64302
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/stimulus.h
@@ -0,0 +1,84 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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_vector4& out_stimulus1;
+ sc_signal_bool_vector4& out_stimulus2;
+ sc_signal_bool_vector6& out_stimulus3;
+ sc_signal_bool_vector6& out_stimulus4;
+ sc_signal_bool_vector8& out_stimulus5;
+ sc_signal_bool_vector8& out_stimulus6;
+ sc_signal<bool>& out_valid;
+
+ stimulus(sc_module_name NAME,
+ sc_clock& CLK,
+ sc_signal<bool>& RESET,
+ sc_signal_bool_vector4& OUT_STIMULUS1,
+ sc_signal_bool_vector4& OUT_STIMULUS2,
+ sc_signal_bool_vector6& OUT_STIMULUS3,
+ sc_signal_bool_vector6& OUT_STIMULUS4,
+ sc_signal_bool_vector8& OUT_STIMULUS5,
+ sc_signal_bool_vector8& OUT_STIMULUS6,
+ sc_signal<bool>& OUT_VALID
+ )
+ :
+ reset(RESET),
+ out_stimulus1(OUT_STIMULUS1),
+ out_stimulus2(OUT_STIMULUS2),
+ out_stimulus3(OUT_STIMULUS3),
+ out_stimulus4(OUT_STIMULUS4),
+ out_stimulus5(OUT_STIMULUS5),
+ out_stimulus6(OUT_STIMULUS6),
+ 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/bitwise/shl/datatypes/common.h b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/common.h
new file mode 100644
index 000000000..1af56c523
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/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<8> > sc_signal_bool_vector;
+
+#endif
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/datatypes.cpp b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/datatypes.cpp
new file mode 100644
index 000000000..67ed1a1ac
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/datatypes.cpp
@@ -0,0 +1,150 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ datatypes.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "datatypes.h"
+#define true 1
+#define false 0
+
+void datatypes::entry()
+
+{
+
+ sc_bigint<8> tmp1;
+ sc_bigint<8> tmp1r;
+ sc_biguint<8> tmp2;
+ sc_biguint<8> tmp2r;
+ long tmp3;
+ long tmp3r;
+ int tmp4;
+ int tmp4r;
+ short tmp5;
+ short tmp5r;
+ char tmp6;
+ char tmp6r;
+
+// define 1 dimensional array
+ unsigned int tmp7[2];
+ char tmp8[2];
+
+// define sc_bool_vector
+ sc_bv<4> tmp10;
+ tmp10[3] = 0; tmp10[2] = 1; tmp10[1] = 0; tmp10[0] = 1;
+
+// define 2 dimentional array
+ sc_bv<1> tmp11[2];
+
+// reset_loop
+ if (reset.read() == true) {
+ out_valid.write(false);
+ out_ack.write(false);
+ wait();
+ } else wait();
+
+//
+// main loop
+//
+
+// initialization of sc_array
+
+ tmp7[0] = 3;
+ tmp7[1] = 12;
+ tmp8[0] = 'S';
+ tmp8[1] = 'C';
+ tmp11[0][0] = "1";
+ tmp11[1][0] = "0";
+
+
+ while(1) {
+ while(in_valid.read()==false) wait();
+
+ //reading the inputs
+ tmp1 = in_value1.read();
+ tmp2 = in_value2.read();
+ tmp3 = in_value3.read();
+ tmp4 = in_value4.read();
+ tmp5 = in_value5.read();
+ tmp6 = in_value6.read();
+
+ out_ack.write(true);
+
+ //execute mixed data type shift left operations
+ tmp1r = tmp1 << (tmp7[0] % 8);
+ tmp2r = tmp2 << 2;
+ tmp3r = tmp3 << 1;
+ tmp4r = tmp4 << (tmp7[1] % 16);
+ tmp5r = tmp3 << ((unsigned int)(tmp1.to_int()) % 32);
+ tmp6r = tmp6 << 1;
+
+ //write outputs
+ out_value1.write(tmp1r);
+ out_value2.write(tmp2r);
+ out_value3.write(tmp3r);
+ out_value4.write(tmp4r);
+ out_value5.write(tmp5r);
+ out_value6.write(tmp6r);
+
+ out_valid.write(true);
+ wait();
+ out_ack.write(false);
+ out_valid.write(false);
+
+ //execute mixed data type shift left operations
+ tmp1r = tmp1 << (tmp7[0] % 8);
+ tmp2r = tmp2 << (unsigned int)(tmp4 % 8);
+ tmp3r = tmp3 << (short)(tmp5 % 32);
+ tmp4r = tmp4 << 2;
+ tmp5r = tmp3 << ((unsigned int)(tmp5) % 16);
+ tmp6r = tmp6 << (tmp2.to_uint() % 32);
+
+ //write outputs
+ out_value1.write(tmp1r);
+ out_value2.write(tmp2r);
+ out_value3.write(tmp3r);
+ out_value4.write(tmp4r);
+ out_value5.write(tmp5r);
+ out_value6.write(tmp6r);
+
+ out_valid.write(true);
+ wait();
+ out_ack.write(false);
+ out_valid.write(false);
+
+ }
+
+} // End
+
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/datatypes.f b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/datatypes.f
new file mode 100644
index 000000000..64f4c05f1
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/datatypes.f
@@ -0,0 +1,4 @@
+datatypes/stimulus.cpp
+datatypes/display.cpp
+datatypes/datatypes.cpp
+datatypes/main.cpp
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/datatypes.h b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/datatypes.h
new file mode 100644
index 000000000..6def13c41
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/datatypes.h
@@ -0,0 +1,126 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ datatypes.h --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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( datatypes )
+{
+ SC_HAS_PROCESS( datatypes );
+
+ sc_in_clk clk;
+
+ //====================================================================
+ // [C] Always Needed Member Function
+ // -- constructor
+ // -- entry
+ //====================================================================
+
+ const sc_signal<bool>& reset ;
+ const sc_signal_bool_vector& in_value1; // Input port
+ const sc_signal_bool_vector& in_value2; // Input port
+ const sc_signal<long>& in_value3; // Input port
+ const sc_signal<int>& in_value4; // Input port
+ const sc_signal<short>& in_value5; // Input port
+ const sc_signal<char>& in_value6; // Input port
+ const sc_signal<bool>& in_valid; // Input port
+ sc_signal<bool>& out_ack; // Output port
+ sc_signal_bool_vector& out_value1; // Output port
+ sc_signal_bool_vector& out_value2; // Output port
+ sc_signal<long>& out_value3; // Output port
+ sc_signal<int>& out_value4; // Output port
+ sc_signal<short>& out_value5; // Output port
+ sc_signal<char>& out_value6; // Output port
+ sc_signal<bool>& out_valid; // Output port
+
+ //
+ // Constructor
+ //
+
+ datatypes(
+ 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<long>& IN_VALUE3,
+ const sc_signal<int>& IN_VALUE4,
+ const sc_signal<short>& IN_VALUE5,
+ const sc_signal<char>& IN_VALUE6,
+ const sc_signal<bool>& IN_VALID,
+
+ sc_signal<bool>& OUT_ACK,
+ sc_signal_bool_vector& OUT_VALUE1,
+ sc_signal_bool_vector& OUT_VALUE2,
+ sc_signal<long>& OUT_VALUE3,
+ sc_signal<int>& OUT_VALUE4,
+ sc_signal<short>& OUT_VALUE5,
+ sc_signal<char>& OUT_VALUE6,
+ sc_signal<bool>& OUT_VALID
+ )
+ :
+ reset (RESET),
+ in_value1 (IN_VALUE1),
+ in_value2 (IN_VALUE2),
+ in_value3 (IN_VALUE3),
+ in_value4 (IN_VALUE4),
+ in_value5 (IN_VALUE5),
+ in_value6 (IN_VALUE6),
+ in_valid (IN_VALID),
+ out_ack (OUT_ACK),
+ out_value1 (OUT_VALUE1),
+ out_value2 (OUT_VALUE2),
+ out_value3 (OUT_VALUE3),
+ out_value4 (OUT_VALUE4),
+ out_value5 (OUT_VALUE5),
+ out_value6 (OUT_VALUE6),
+ out_valid (OUT_VALID)
+
+ {
+ clk (CLK);
+ SC_CTHREAD( entry, clk.pos() );
+ reset_signal_is(reset,true);
+ };
+
+//Process Functionality: Described in the member function below
+ void entry();
+};
+
+// EOF
+
+
+
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/display.cpp b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/display.cpp
new file mode 100644
index 000000000..15e132440
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/display.cpp
@@ -0,0 +1,50 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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() {
+
+ while(true){
+ do { wait(); } while ( in_valid == false);
+ cout << "Display: " << in_value1.read() << " " << in_value2.read() << " " << in_value3.read() << " " << in_value4.read() << " " << in_value5.read() << " " << (int)in_value6.read() << endl;
+ do { wait(); } while ( in_valid == true);
+ }
+
+}
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/display.h b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/display.h
new file mode 100644
index 000000000..5e938dbf5
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/display.h
@@ -0,0 +1,87 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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_value1; // Output port
+ const sc_signal_bool_vector& in_value2; // Output port
+ const sc_signal<long>& in_value3; // Output port
+ const sc_signal<int>& in_value4; // Output port
+ const sc_signal<short>& in_value5; // Output port
+ const sc_signal<char>& in_value6; // Output port
+ const sc_signal<bool>& in_valid; // Output port
+
+ //
+ // Constructor
+ //
+
+ display(
+ sc_module_name NAME, // reference name
+ sc_clock& CLK, // clock
+ const sc_signal_bool_vector& IN_VALUE1,
+ const sc_signal_bool_vector& IN_VALUE2,
+ const sc_signal<long>& IN_VALUE3,
+ const sc_signal<int>& IN_VALUE4,
+ const sc_signal<short>& IN_VALUE5,
+ const sc_signal<char>& IN_VALUE6,
+ const sc_signal<bool>& IN_VALID
+ )
+ :
+ in_value1 (IN_VALUE1),
+ in_value2 (IN_VALUE2),
+ in_value3 (IN_VALUE3),
+ in_value4 (IN_VALUE4),
+ in_value5 (IN_VALUE5),
+ in_value6 (IN_VALUE6),
+ 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/bitwise/shl/datatypes/golden/datatypes.log b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/golden/datatypes.log
new file mode 100644
index 000000000..217bb37d8
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/golden/datatypes.log
@@ -0,0 +1,203 @@
+SystemC Simulation
+Stimuli: -37 1 1 -1 20000
+Display: 11011000 00000100 2 -4096 0 -92
+Stimuli: -36 2 2 0 20001
+Display: 11100000 00001000 4 0 0 -90
+Stimuli: -35 3 3 1 20002
+Display: 11101000 00001100 6 4096 0 -88
+Stimuli: -34 4 4 2 20003
+Display: 11110000 00010000 8 8192 0 -86
+Stimuli: -33 5 5 3 20004
+Display: 11111000 00010100 10 12288 0 -84
+Stimuli: -32 6 6 4 20005
+Display: 00000000 00011000 12 16384 6 -82
+Stimuli: -31 7 7 5 20006
+Display: 00001000 00011100 14 20480 14 -80
+Stimuli: -30 8 8 6 20007
+Display: 00010000 00100000 16 24576 32 -78
+Stimuli: -29 9 9 7 20008
+Display: 00011000 00100100 18 28672 72 -76
+Stimuli: -28 10 10 8 20009
+Display: 00100000 00101000 20 32768 160 -74
+Stimuli: -27 11 11 9 20010
+Display: 00101000 00101100 22 36864 352 -72
+Stimuli: -26 12 12 10 20011
+Display: 00110000 00110000 24 40960 768 -70
+Stimuli: -25 13 13 11 20012
+Display: 00111000 00110100 26 45056 1664 -68
+Stimuli: -24 14 14 12 20013
+Display: 01000000 00111000 28 49152 3584 -66
+Stimuli: -23 15 15 13 20014
+Display: 01001000 00111100 30 53248 7680 -64
+Stimuli: -22 16 16 14 20015
+Display: 01010000 01000000 32 57344 16384 -62
+Stimuli: -21 17 17 15 20016
+Display: 01011000 01000100 34 61440 -30720 -60
+Stimuli: -20 18 18 16 20017
+Display: 01100000 01001000 36 65536 8192 -58
+Stimuli: -19 19 19 17 20018
+Display: 01101000 01001100 38 69632 24576 -56
+Stimuli: -18 20 20 18 20019
+Display: 01110000 01010000 40 73728 0 -54
+Stimuli: -17 21 21 19 20020
+Display: 01111000 01010100 42 77824 -32768 -52
+Stimuli: -16 22 22 20 20021
+Display: 10000000 01011000 44 81920 0 -50
+Stimuli: -15 23 23 21 20022
+Display: 10001000 01011100 46 86016 0 -48
+Stimuli: -14 24 24 22 20023
+Display: 10010000 01100000 48 90112 0 -46
+Stimuli: -13 25 25 23 20024
+Display: 10011000 01100100 50 94208 0 -44
+Stimuli: -12 26 26 24 20025
+Display: 10100000 01101000 52 98304 0 -42
+Stimuli: -11 27 27 25 20026
+Display: 10101000 01101100 54 102400 0 -40
+Stimuli: -10 28 28 26 20027
+Display: 10110000 01110000 56 106496 0 -38
+Stimuli: -9 29 29 27 20028
+Display: 10111000 01110100 58 110592 0 -36
+Stimuli: -8 30 30 28 20029
+Display: 11000000 01111000 60 114688 0 -34
+Stimuli: -7 31 31 29 20030
+Display: 11001000 01111100 62 118784 0 -32
+Stimuli: -6 32 32 30 20031
+Display: 11010000 10000000 64 122880 0 -30
+Stimuli: -5 33 33 31 20032
+Display: 11011000 10000100 66 126976 0 -28
+Stimuli: -4 34 34 32 20033
+Display: 11100000 10001000 68 131072 0 -26
+Stimuli: -3 35 35 33 20034
+Display: 11101000 10001100 70 135168 0 -24
+Stimuli: -2 36 36 34 20035
+Display: 11110000 10010000 72 139264 0 -22
+Stimuli: -1 37 37 35 20036
+Display: 11111000 10010100 74 143360 0 -20
+Stimuli: 0 38 38 36 20037
+Display: 00000000 10011000 76 147456 38 -18
+Stimuli: 1 39 39 37 20038
+Display: 00001000 10011100 78 151552 78 -16
+Stimuli: 2 40 40 38 20039
+Display: 00010000 10100000 80 155648 160 -14
+Stimuli: 3 41 41 39 20040
+Display: 00011000 10100100 82 159744 328 -12
+Stimuli: 4 42 42 40 20041
+Display: 00100000 10101000 84 163840 672 -10
+Stimuli: 5 43 43 41 20042
+Display: 00101000 10101100 86 167936 1376 -8
+Stimuli: 6 44 44 42 20043
+Display: 00110000 10110000 88 172032 2816 -6
+Stimuli: 7 45 45 43 20044
+Display: 00111000 10110100 90 176128 5760 -4
+Stimuli: 8 46 46 44 20045
+Display: 01000000 10111000 92 180224 11776 -2
+Stimuli: 9 47 47 45 20046
+Display: 01001000 10111100 94 184320 24064 0
+Stimuli: 10 48 48 46 20047
+Display: 01010000 11000000 96 188416 -16384 2
+Stimuli: 11 49 49 47 20048
+Display: 01011000 11000100 98 192512 -30720 4
+Stimuli: 12 50 50 48 20049
+Display: 01100000 11001000 100 196608 8192 6
+Stimuli: 13 51 51 49 20050
+Display: 01101000 11001100 102 200704 24576 8
+Stimuli: 14 52 52 50 20051
+Display: 01110000 11010000 104 204800 0 10
+Stimuli: 15 53 53 51 20052
+Display: 01111000 11010100 106 208896 -32768 12
+Stimuli: 16 54 54 52 20053
+Display: 10000000 11011000 108 212992 0 14
+Stimuli: 17 55 55 53 20054
+Display: 10001000 11011100 110 217088 0 16
+Stimuli: 18 56 56 54 20055
+Display: 10010000 11100000 112 221184 0 18
+Stimuli: 19 57 57 55 20056
+Display: 10011000 11100100 114 225280 0 20
+Stimuli: 20 58 58 56 20057
+Display: 10100000 11101000 116 229376 0 22
+Stimuli: 21 59 59 57 20058
+Display: 10101000 11101100 118 233472 0 24
+Stimuli: 22 60 60 58 20059
+Display: 10110000 11110000 120 237568 0 26
+Stimuli: 23 61 61 59 20060
+Display: 10111000 11110100 122 241664 0 28
+Stimuli: 24 62 62 60 20061
+Display: 11000000 11111000 124 245760 0 30
+Stimuli: 25 63 63 61 20062
+Display: 11001000 11111100 126 249856 0 32
+Stimuli: 26 64 64 62 20063
+Display: 11010000 00000000 128 253952 0 34
+Stimuli: 27 65 65 63 20064
+Display: 11011000 00000100 130 258048 0 36
+Stimuli: 28 66 66 64 20065
+Display: 11100000 00001000 132 262144 0 38
+Stimuli: 29 67 67 65 20066
+Display: 11101000 00001100 134 266240 0 40
+Stimuli: 30 68 68 66 20067
+Display: 11110000 00010000 136 270336 0 42
+Stimuli: 31 69 69 67 20068
+Display: 11111000 00010100 138 274432 0 44
+Stimuli: 32 70 70 68 20069
+Display: 00000000 00011000 140 278528 70 46
+Stimuli: 33 71 71 69 20070
+Display: 00001000 00011100 142 282624 142 48
+Stimuli: 34 72 72 70 20071
+Display: 00010000 00100000 144 286720 288 50
+Stimuli: 35 73 73 71 20072
+Display: 00011000 00100100 146 290816 584 52
+Stimuli: 36 74 74 72 20073
+Display: 00100000 00101000 148 294912 1184 54
+Stimuli: 37 75 75 73 20074
+Display: 00101000 00101100 150 299008 2400 56
+Stimuli: 38 76 76 74 20075
+Display: 00110000 00110000 152 303104 4864 58
+Stimuli: 39 77 77 75 20076
+Display: 00111000 00110100 154 307200 9856 60
+Stimuli: 40 78 78 76 20077
+Display: 01000000 00111000 156 311296 19968 62
+Stimuli: 41 79 79 77 20078
+Display: 01001000 00111100 158 315392 -25088 64
+Stimuli: 42 80 80 78 20079
+Display: 01010000 01000000 160 319488 16384 66
+Stimuli: 43 81 81 79 20080
+Display: 01011000 01000100 162 323584 -30720 68
+Stimuli: 44 82 82 80 20081
+Display: 01100000 01001000 164 327680 8192 70
+Stimuli: 45 83 83 81 20082
+Display: 01101000 01001100 166 331776 24576 72
+Stimuli: 46 84 84 82 20083
+Display: 01110000 01010000 168 335872 0 74
+Stimuli: 47 85 85 83 20084
+Display: 01111000 01010100 170 339968 -32768 76
+Stimuli: 48 86 86 84 20085
+Display: 10000000 01011000 172 344064 0 78
+Stimuli: 49 87 87 85 20086
+Display: 10001000 01011100 174 348160 0 80
+Stimuli: 50 88 88 86 20087
+Display: 10010000 01100000 176 352256 0 82
+Stimuli: 51 89 89 87 20088
+Display: 10011000 01100100 178 356352 0 84
+Stimuli: 52 90 90 88 20089
+Display: 10100000 01101000 180 360448 0 86
+Stimuli: 53 91 91 89 20090
+Display: 10101000 01101100 182 364544 0 88
+Stimuli: 54 92 92 90 20091
+Display: 10110000 01110000 184 368640 0 90
+Stimuli: 55 93 93 91 20092
+Display: 10111000 01110100 186 372736 0 92
+Stimuli: 56 94 94 92 20093
+Display: 11000000 01111000 188 376832 0 94
+Stimuli: 57 95 95 93 20094
+Display: 11001000 01111100 190 380928 0 96
+Stimuli: 58 96 96 94 20095
+Display: 11010000 10000000 192 385024 0 98
+Stimuli: 59 97 97 95 20096
+Display: 11011000 10000100 194 389120 0 100
+Stimuli: 60 98 98 96 20097
+Display: 11100000 10001000 196 393216 0 102
+Stimuli: 61 99 99 97 20098
+Display: 11101000 10001100 198 397312 0 104
+Stimuli: 62 100 100 98 20099
+Display: 11110000 10010000 200 401408 0 106
+
+Info: /OSCI/SystemC: Simulation stopped by user.
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/golden/datatypes.log.linuxaarch64 b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/golden/datatypes.log.linuxaarch64
new file mode 100644
index 000000000..81d9eaa88
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/golden/datatypes.log.linuxaarch64
@@ -0,0 +1,203 @@
+SystemC Simulation
+Stimuli: -37 1 1 -1 20000
+Display: 11011000 00000100 2 -4096 0 164
+Stimuli: -36 2 2 0 20001
+Display: 11100000 00001000 4 0 0 166
+Stimuli: -35 3 3 1 20002
+Display: 11101000 00001100 6 4096 0 168
+Stimuli: -34 4 4 2 20003
+Display: 11110000 00010000 8 8192 0 170
+Stimuli: -33 5 5 3 20004
+Display: 11111000 00010100 10 12288 0 172
+Stimuli: -32 6 6 4 20005
+Display: 00000000 00011000 12 16384 6 174
+Stimuli: -31 7 7 5 20006
+Display: 00001000 00011100 14 20480 14 176
+Stimuli: -30 8 8 6 20007
+Display: 00010000 00100000 16 24576 32 178
+Stimuli: -29 9 9 7 20008
+Display: 00011000 00100100 18 28672 72 180
+Stimuli: -28 10 10 8 20009
+Display: 00100000 00101000 20 32768 160 182
+Stimuli: -27 11 11 9 20010
+Display: 00101000 00101100 22 36864 352 184
+Stimuli: -26 12 12 10 20011
+Display: 00110000 00110000 24 40960 768 186
+Stimuli: -25 13 13 11 20012
+Display: 00111000 00110100 26 45056 1664 188
+Stimuli: -24 14 14 12 20013
+Display: 01000000 00111000 28 49152 3584 190
+Stimuli: -23 15 15 13 20014
+Display: 01001000 00111100 30 53248 7680 192
+Stimuli: -22 16 16 14 20015
+Display: 01010000 01000000 32 57344 16384 194
+Stimuli: -21 17 17 15 20016
+Display: 01011000 01000100 34 61440 -30720 196
+Stimuli: -20 18 18 16 20017
+Display: 01100000 01001000 36 65536 8192 198
+Stimuli: -19 19 19 17 20018
+Display: 01101000 01001100 38 69632 24576 200
+Stimuli: -18 20 20 18 20019
+Display: 01110000 01010000 40 73728 0 202
+Stimuli: -17 21 21 19 20020
+Display: 01111000 01010100 42 77824 -32768 204
+Stimuli: -16 22 22 20 20021
+Display: 10000000 01011000 44 81920 0 206
+Stimuli: -15 23 23 21 20022
+Display: 10001000 01011100 46 86016 0 208
+Stimuli: -14 24 24 22 20023
+Display: 10010000 01100000 48 90112 0 210
+Stimuli: -13 25 25 23 20024
+Display: 10011000 01100100 50 94208 0 212
+Stimuli: -12 26 26 24 20025
+Display: 10100000 01101000 52 98304 0 214
+Stimuli: -11 27 27 25 20026
+Display: 10101000 01101100 54 102400 0 216
+Stimuli: -10 28 28 26 20027
+Display: 10110000 01110000 56 106496 0 218
+Stimuli: -9 29 29 27 20028
+Display: 10111000 01110100 58 110592 0 220
+Stimuli: -8 30 30 28 20029
+Display: 11000000 01111000 60 114688 0 222
+Stimuli: -7 31 31 29 20030
+Display: 11001000 01111100 62 118784 0 224
+Stimuli: -6 32 32 30 20031
+Display: 11010000 10000000 64 122880 0 226
+Stimuli: -5 33 33 31 20032
+Display: 11011000 10000100 66 126976 0 228
+Stimuli: -4 34 34 32 20033
+Display: 11100000 10001000 68 131072 0 230
+Stimuli: -3 35 35 33 20034
+Display: 11101000 10001100 70 135168 0 232
+Stimuli: -2 36 36 34 20035
+Display: 11110000 10010000 72 139264 0 234
+Stimuli: -1 37 37 35 20036
+Display: 11111000 10010100 74 143360 0 236
+Stimuli: 0 38 38 36 20037
+Display: 00000000 10011000 76 147456 38 238
+Stimuli: 1 39 39 37 20038
+Display: 00001000 10011100 78 151552 78 240
+Stimuli: 2 40 40 38 20039
+Display: 00010000 10100000 80 155648 160 242
+Stimuli: 3 41 41 39 20040
+Display: 00011000 10100100 82 159744 328 244
+Stimuli: 4 42 42 40 20041
+Display: 00100000 10101000 84 163840 672 246
+Stimuli: 5 43 43 41 20042
+Display: 00101000 10101100 86 167936 1376 248
+Stimuli: 6 44 44 42 20043
+Display: 00110000 10110000 88 172032 2816 250
+Stimuli: 7 45 45 43 20044
+Display: 00111000 10110100 90 176128 5760 252
+Stimuli: 8 46 46 44 20045
+Display: 01000000 10111000 92 180224 11776 254
+Stimuli: 9 47 47 45 20046
+Display: 01001000 10111100 94 184320 24064 0
+Stimuli: 10 48 48 46 20047
+Display: 01010000 11000000 96 188416 -16384 2
+Stimuli: 11 49 49 47 20048
+Display: 01011000 11000100 98 192512 -30720 4
+Stimuli: 12 50 50 48 20049
+Display: 01100000 11001000 100 196608 8192 6
+Stimuli: 13 51 51 49 20050
+Display: 01101000 11001100 102 200704 24576 8
+Stimuli: 14 52 52 50 20051
+Display: 01110000 11010000 104 204800 0 10
+Stimuli: 15 53 53 51 20052
+Display: 01111000 11010100 106 208896 -32768 12
+Stimuli: 16 54 54 52 20053
+Display: 10000000 11011000 108 212992 0 14
+Stimuli: 17 55 55 53 20054
+Display: 10001000 11011100 110 217088 0 16
+Stimuli: 18 56 56 54 20055
+Display: 10010000 11100000 112 221184 0 18
+Stimuli: 19 57 57 55 20056
+Display: 10011000 11100100 114 225280 0 20
+Stimuli: 20 58 58 56 20057
+Display: 10100000 11101000 116 229376 0 22
+Stimuli: 21 59 59 57 20058
+Display: 10101000 11101100 118 233472 0 24
+Stimuli: 22 60 60 58 20059
+Display: 10110000 11110000 120 237568 0 26
+Stimuli: 23 61 61 59 20060
+Display: 10111000 11110100 122 241664 0 28
+Stimuli: 24 62 62 60 20061
+Display: 11000000 11111000 124 245760 0 30
+Stimuli: 25 63 63 61 20062
+Display: 11001000 11111100 126 249856 0 32
+Stimuli: 26 64 64 62 20063
+Display: 11010000 00000000 128 253952 0 34
+Stimuli: 27 65 65 63 20064
+Display: 11011000 00000100 130 258048 0 36
+Stimuli: 28 66 66 64 20065
+Display: 11100000 00001000 132 262144 0 38
+Stimuli: 29 67 67 65 20066
+Display: 11101000 00001100 134 266240 0 40
+Stimuli: 30 68 68 66 20067
+Display: 11110000 00010000 136 270336 0 42
+Stimuli: 31 69 69 67 20068
+Display: 11111000 00010100 138 274432 0 44
+Stimuli: 32 70 70 68 20069
+Display: 00000000 00011000 140 278528 70 46
+Stimuli: 33 71 71 69 20070
+Display: 00001000 00011100 142 282624 142 48
+Stimuli: 34 72 72 70 20071
+Display: 00010000 00100000 144 286720 288 50
+Stimuli: 35 73 73 71 20072
+Display: 00011000 00100100 146 290816 584 52
+Stimuli: 36 74 74 72 20073
+Display: 00100000 00101000 148 294912 1184 54
+Stimuli: 37 75 75 73 20074
+Display: 00101000 00101100 150 299008 2400 56
+Stimuli: 38 76 76 74 20075
+Display: 00110000 00110000 152 303104 4864 58
+Stimuli: 39 77 77 75 20076
+Display: 00111000 00110100 154 307200 9856 60
+Stimuli: 40 78 78 76 20077
+Display: 01000000 00111000 156 311296 19968 62
+Stimuli: 41 79 79 77 20078
+Display: 01001000 00111100 158 315392 -25088 64
+Stimuli: 42 80 80 78 20079
+Display: 01010000 01000000 160 319488 16384 66
+Stimuli: 43 81 81 79 20080
+Display: 01011000 01000100 162 323584 -30720 68
+Stimuli: 44 82 82 80 20081
+Display: 01100000 01001000 164 327680 8192 70
+Stimuli: 45 83 83 81 20082
+Display: 01101000 01001100 166 331776 24576 72
+Stimuli: 46 84 84 82 20083
+Display: 01110000 01010000 168 335872 0 74
+Stimuli: 47 85 85 83 20084
+Display: 01111000 01010100 170 339968 -32768 76
+Stimuli: 48 86 86 84 20085
+Display: 10000000 01011000 172 344064 0 78
+Stimuli: 49 87 87 85 20086
+Display: 10001000 01011100 174 348160 0 80
+Stimuli: 50 88 88 86 20087
+Display: 10010000 01100000 176 352256 0 82
+Stimuli: 51 89 89 87 20088
+Display: 10011000 01100100 178 356352 0 84
+Stimuli: 52 90 90 88 20089
+Display: 10100000 01101000 180 360448 0 86
+Stimuli: 53 91 91 89 20090
+Display: 10101000 01101100 182 364544 0 88
+Stimuli: 54 92 92 90 20091
+Display: 10110000 01110000 184 368640 0 90
+Stimuli: 55 93 93 91 20092
+Display: 10111000 01110100 186 372736 0 92
+Stimuli: 56 94 94 92 20093
+Display: 11000000 01111000 188 376832 0 94
+Stimuli: 57 95 95 93 20094
+Display: 11001000 01111100 190 380928 0 96
+Stimuli: 58 96 96 94 20095
+Display: 11010000 10000000 192 385024 0 98
+Stimuli: 59 97 97 95 20096
+Display: 11011000 10000100 194 389120 0 100
+Stimuli: 60 98 98 96 20097
+Display: 11100000 10001000 196 393216 0 102
+Stimuli: 61 99 99 97 20098
+Display: 11101000 10001100 198 397312 0 104
+Stimuli: 62 100 100 98 20099
+Display: 11110000 10010000 200 401408 0 106
+
+Info: /OSCI/SystemC: Simulation stopped by user.
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/main.cpp b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/main.cpp
new file mode 100644
index 000000000..813f5f29d
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/main.cpp
@@ -0,0 +1,109 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "stimulus.h"
+#include "display.h"
+#include "datatypes.h"
+
+int sc_main (int argc , char *argv[]) {
+ sc_clock clock;
+ sc_signal<bool> reset;
+ sc_signal_bool_vector stimulus_line1;
+ sc_signal_bool_vector stimulus_line2;
+ sc_signal<long> stimulus_line3;
+ sc_signal<int> stimulus_line4;
+ sc_signal<short> stimulus_line5;
+ sc_signal<char> stimulus_line6;
+ sc_signal<bool> input_valid;
+ sc_signal<bool> ack;
+ sc_signal<bool> output_valid;
+ sc_signal_bool_vector result_line1;
+ sc_signal_bool_vector result_line2;
+ sc_signal<long> result_line3;
+ sc_signal<int> result_line4;
+ sc_signal<short> result_line5;
+ sc_signal<char> result_line6;
+
+ output_valid = 0;
+
+ stimulus stimulus1("stimulus_block",
+ clock,
+ reset,
+ stimulus_line1,
+ stimulus_line2,
+ stimulus_line3,
+ stimulus_line4,
+ stimulus_line5,
+ stimulus_line6,
+ input_valid,
+ ack);
+
+ datatypes datatypes1( "process_body",
+ clock,
+ reset,
+ stimulus_line1,
+ stimulus_line2,
+ stimulus_line3,
+ stimulus_line4,
+ stimulus_line5,
+ stimulus_line6,
+ input_valid,
+ ack,
+ result_line1,
+ result_line2,
+ result_line3,
+ result_line4,
+ result_line5,
+ result_line6,
+ output_valid);
+
+ display display1( "display_block",
+ clock,
+ result_line1,
+ result_line2,
+ result_line3,
+ result_line4,
+ result_line5,
+ result_line6,
+ output_valid);
+
+ sc_start();
+ return 0;
+}
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/stimulus.cpp b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/stimulus.cpp
new file mode 100644
index 000000000..1263da802
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/stimulus.cpp
@@ -0,0 +1,85 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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() {
+
+ reset.write(true);
+ wait();
+ reset.write(false);
+
+ sc_signed tmp1(8);
+ sc_signed tmp2(8);
+ long tmp3;
+ int tmp4;
+ short tmp5;
+ char tmp6;
+
+ int counter = 0;
+
+ tmp1 = "0b11011011";
+ tmp2 = "0b00000001";
+ tmp3 = 1;
+ tmp4 = -1;
+ tmp5 = 20000;
+ tmp6 = 'R';
+
+ while(counter<100){
+ out_valid.write(true);
+ out_value1.write(tmp1);
+ out_value2.write(tmp2);
+ out_value3.write(tmp3);
+ out_value4.write(tmp4);
+ out_value5.write(tmp5);
+ out_value6.write(tmp6);
+ cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << " " << endl;
+ tmp1 = tmp1 + 1;
+ tmp2 = tmp2 + 1;
+ tmp3 = tmp3 + 1;
+ tmp4 = tmp4 + 1;
+ tmp5 = tmp5 + 1;
+ tmp6 = tmp6 + 1;
+ do { wait(); } while (in_ack==false);
+ out_valid.write(false);
+ counter++;
+ wait();
+ }
+ sc_stop();
+}
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/stimulus.h b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/stimulus.h
new file mode 100644
index 000000000..6f7aeefc8
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/stimulus.h
@@ -0,0 +1,90 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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& out_value1; // Output port
+ sc_signal_bool_vector& out_value2; // Output port
+ sc_signal<long>& out_value3; // Output port
+ sc_signal<int>& out_value4; // Output port
+ sc_signal<short>& out_value5; // Output port
+ sc_signal<char>& out_value6; // Output port
+ sc_signal<bool>& out_valid; // Output port
+ const sc_signal<bool>& in_ack;
+
+ //
+ // Constructor
+ //
+
+ stimulus(
+ sc_module_name NAME, // reference name
+ sc_clock& CLK, // clock
+ sc_signal<bool>& RESET,
+ sc_signal_bool_vector& OUT_VALUE1,
+ sc_signal_bool_vector& OUT_VALUE2,
+ sc_signal<long>& OUT_VALUE3,
+ sc_signal<int>& OUT_VALUE4,
+ sc_signal<short>& OUT_VALUE5,
+ sc_signal<char>& OUT_VALUE6,
+ sc_signal<bool>& OUT_VALID,
+ const sc_signal<bool>& IN_ACK
+ )
+ :
+ reset (RESET),
+ out_value1 (OUT_VALUE1),
+ out_value2 (OUT_VALUE2),
+ out_value3 (OUT_VALUE3),
+ out_value4 (OUT_VALUE4),
+ out_value5 (OUT_VALUE5),
+ out_value6 (OUT_VALUE6),
+ out_valid (OUT_VALID),
+ in_ack (IN_ACK)
+ {
+ clk (CLK);
+ SC_CTHREAD( entry, clk.pos() );
+ };
+ void entry();
+};
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/common.h b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/common.h
new file mode 100644
index 000000000..1af56c523
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/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<8> > sc_signal_bool_vector;
+
+#endif
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/display.cpp b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/display.cpp
new file mode 100644
index 000000000..79d2a0f86
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/display.cpp
@@ -0,0 +1,50 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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() {
+
+ while(true){
+ do { wait(); } while ( in_valid == false);
+ cout << "Display: " << in_value1.read() << " " << in_value2.read() << " " << in_value3.read() << " " << in_value4.read() << " " << in_value5.read() << " " << in_value6.read() << endl;
+ do { wait(); } while ( in_valid == true);
+ }
+
+}
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/display.h b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/display.h
new file mode 100644
index 000000000..5e938dbf5
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/display.h
@@ -0,0 +1,87 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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_value1; // Output port
+ const sc_signal_bool_vector& in_value2; // Output port
+ const sc_signal<long>& in_value3; // Output port
+ const sc_signal<int>& in_value4; // Output port
+ const sc_signal<short>& in_value5; // Output port
+ const sc_signal<char>& in_value6; // Output port
+ const sc_signal<bool>& in_valid; // Output port
+
+ //
+ // Constructor
+ //
+
+ display(
+ sc_module_name NAME, // reference name
+ sc_clock& CLK, // clock
+ const sc_signal_bool_vector& IN_VALUE1,
+ const sc_signal_bool_vector& IN_VALUE2,
+ const sc_signal<long>& IN_VALUE3,
+ const sc_signal<int>& IN_VALUE4,
+ const sc_signal<short>& IN_VALUE5,
+ const sc_signal<char>& IN_VALUE6,
+ const sc_signal<bool>& IN_VALID
+ )
+ :
+ in_value1 (IN_VALUE1),
+ in_value2 (IN_VALUE2),
+ in_value3 (IN_VALUE3),
+ in_value4 (IN_VALUE4),
+ in_value5 (IN_VALUE5),
+ in_value6 (IN_VALUE6),
+ 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/bitwise/shl/sharing/golden/sharing.log b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/golden/sharing.log
new file mode 100644
index 000000000..9666885d8
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/golden/sharing.log
Binary files differ
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/main.cpp b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/main.cpp
new file mode 100644
index 000000000..ffb011ab2
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/main.cpp
@@ -0,0 +1,109 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "stimulus.h"
+#include "display.h"
+#include "sharing.h"
+
+int sc_main (int argc , char *argv[]) {
+ sc_clock clock;
+ sc_signal<bool> reset;
+ sc_signal_bool_vector stimulus_line1;
+ sc_signal_bool_vector stimulus_line2;
+ sc_signal<long> stimulus_line3;
+ sc_signal<int> stimulus_line4;
+ sc_signal<short> stimulus_line5;
+ sc_signal<char> stimulus_line6;
+ sc_signal<bool> input_valid;
+ sc_signal<bool> ack;
+ sc_signal<bool> output_valid;
+ sc_signal_bool_vector result_line1;
+ sc_signal_bool_vector result_line2;
+ sc_signal<long> result_line3;
+ sc_signal<int> result_line4;
+ sc_signal<short> result_line5;
+ sc_signal<char> result_line6;
+
+ output_valid = 0;
+
+ stimulus stimulus1("stimulus_block",
+ clock,
+ reset,
+ stimulus_line1,
+ stimulus_line2,
+ stimulus_line3,
+ stimulus_line4,
+ stimulus_line5,
+ stimulus_line6,
+ input_valid,
+ ack);
+
+ sharing sharing1( "process_body",
+ clock,
+ reset,
+ stimulus_line1,
+ stimulus_line2,
+ stimulus_line3,
+ stimulus_line4,
+ stimulus_line5,
+ stimulus_line6,
+ input_valid,
+ ack,
+ result_line1,
+ result_line2,
+ result_line3,
+ result_line4,
+ result_line5,
+ result_line6,
+ output_valid);
+
+ display display1( "display_block",
+ clock,
+ result_line1,
+ result_line2,
+ result_line3,
+ result_line4,
+ result_line5,
+ result_line6,
+ output_valid);
+
+ sc_start();
+ return 0;
+}
+
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/sharing.cpp b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/sharing.cpp
new file mode 100644
index 000000000..392ac6ca5
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/sharing.cpp
@@ -0,0 +1,150 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ sharing.cpp --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+
+#include "sharing.h"
+#define true 1
+#define false 0
+
+void sharing::entry()
+
+{
+
+ sc_bigint<8> tmp1;
+ sc_bigint<8> tmp1r;
+ sc_biguint<8> tmp2;
+ sc_biguint<8> tmp2r;
+ long tmp3;
+ long tmp3r;
+ int tmp4;
+ int tmp4r;
+ short tmp5;
+ short tmp5r;
+ char tmp6;
+ char tmp6r;
+
+// define 1 dimensional array
+ unsigned int tmp7[2];
+ char tmp8[2];
+
+// define sc_bool_vector
+ sc_bv<4> tmp10;
+ tmp10[3] = 0; tmp10[2] = 1; tmp10[1] = 0; tmp10[0] = 1;
+
+// define 2 dimentional array
+ sc_bv<1> tmp11[2];
+
+// reset_loop
+ if (reset.read() == true) {
+ out_valid.write(false);
+ out_ack.write(false);
+ wait();
+ } else wait();
+
+//
+// main loop
+//
+
+// initialization of sc_array
+
+ tmp7[0] = 3;
+ tmp7[1] = 12;
+ tmp8[0] = 'S';
+ tmp8[1] = 'C';
+ tmp11[0][0] = "1";
+ tmp11[1][0] = "0";
+
+
+ while(1) {
+ while(in_valid.read()==false) wait();
+
+ //reading the inputs
+ tmp1 = in_value1.read();
+ tmp2 = in_value2.read();
+ tmp3 = in_value3.read();
+ tmp4 = in_value4.read();
+ tmp5 = in_value5.read();
+ tmp6 = in_value6.read();
+
+ out_ack.write(true);
+
+ //execute mixed data type shit left operations
+ tmp1r = tmp1 << (tmp7[0] % 8);
+ tmp2r = tmp2 << 2;
+ tmp3r = tmp3 << 1;
+ tmp4r = tmp4 << (tmp7[1] % 32);
+ tmp5r = tmp3 << ((unsigned int)tmp1.to_int() % 32);
+ tmp6r = tmp6 << 1;
+
+ //write outputs
+ out_value1.write(tmp1r);
+ out_value2.write(tmp2r);
+ out_value3.write(tmp3r);
+ out_value4.write(tmp4r);
+ out_value5.write(tmp5r);
+ out_value6.write(tmp6r);
+
+ out_valid.write(true);
+ wait();
+ out_ack.write(false);
+ out_valid.write(false);
+
+ //execute mixed data type shift left operations
+ tmp1r = tmp1 << (tmp7[0] % 8);
+ tmp2r = tmp2 << (tmp4 % 8);
+ tmp3r = tmp3 << (tmp5 % 32);
+ tmp4r = tmp4 << 2;
+ tmp5r = tmp3 << ((unsigned int)(tmp5) % 32);
+ tmp6r = tmp6 << (tmp2.to_uint() % 8);
+
+ //write outputs
+ out_value1.write(tmp1r);
+ out_value2.write(tmp2r);
+ out_value3.write(tmp3r);
+ out_value4.write(tmp4r);
+ out_value5.write(tmp5r);
+ out_value6.write(tmp6r);
+
+ out_valid.write(true);
+ wait();
+ out_ack.write(false);
+ out_valid.write(false);
+
+ }
+
+} // End
+
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/sharing.f b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/sharing.f
new file mode 100644
index 000000000..998e0f309
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/sharing.f
@@ -0,0 +1,4 @@
+sharing/display.cpp
+sharing/main.cpp
+sharing/sharing.cpp
+sharing/stimulus.cpp
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/sharing.h b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/sharing.h
new file mode 100644
index 000000000..5552db43a
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/sharing.h
@@ -0,0 +1,126 @@
+/*****************************************************************************
+
+ 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.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ sharing.h --
+
+ Original Author: Rocco Jonack, Synopsys, Inc., 1999-07-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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( sharing )
+{
+ SC_HAS_PROCESS( sharing );
+
+ sc_in_clk clk;
+
+ //====================================================================
+ // [C] Always Needed Member Function
+ // -- constructor
+ // -- entry
+ //====================================================================
+
+ const sc_signal<bool>& reset ;
+ const sc_signal_bool_vector& in_value1; // Input port
+ const sc_signal_bool_vector& in_value2; // Input port
+ const sc_signal<long>& in_value3; // Input port
+ const sc_signal<int>& in_value4; // Input port
+ const sc_signal<short>& in_value5; // Input port
+ const sc_signal<char>& in_value6; // Input port
+ const sc_signal<bool>& in_valid; // Input port
+ sc_signal<bool>& out_ack; // Output port
+ sc_signal_bool_vector& out_value1; // Output port
+ sc_signal_bool_vector& out_value2; // Output port
+ sc_signal<long>& out_value3; // Output port
+ sc_signal<int>& out_value4; // Output port
+ sc_signal<short>& out_value5; // Output port
+ sc_signal<char>& out_value6; // Output port
+ sc_signal<bool>& out_valid; // Output port
+
+ //
+ // Constructor
+ //
+
+ sharing(
+ 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<long>& IN_VALUE3,
+ const sc_signal<int>& IN_VALUE4,
+ const sc_signal<short>& IN_VALUE5,
+ const sc_signal<char>& IN_VALUE6,
+ const sc_signal<bool>& IN_VALID,
+
+ sc_signal<bool>& OUT_ACK,
+ sc_signal_bool_vector& OUT_VALUE1,
+ sc_signal_bool_vector& OUT_VALUE2,
+ sc_signal<long>& OUT_VALUE3,
+ sc_signal<int>& OUT_VALUE4,
+ sc_signal<short>& OUT_VALUE5,
+ sc_signal<char>& OUT_VALUE6,
+ sc_signal<bool>& OUT_VALID
+ )
+ :
+ reset (RESET),
+ in_value1 (IN_VALUE1),
+ in_value2 (IN_VALUE2),
+ in_value3 (IN_VALUE3),
+ in_value4 (IN_VALUE4),
+ in_value5 (IN_VALUE5),
+ in_value6 (IN_VALUE6),
+ in_valid (IN_VALID),
+ out_ack (OUT_ACK),
+ out_value1 (OUT_VALUE1),
+ out_value2 (OUT_VALUE2),
+ out_value3 (OUT_VALUE3),
+ out_value4 (OUT_VALUE4),
+ out_value5 (OUT_VALUE5),
+ out_value6 (OUT_VALUE6),
+ out_valid (OUT_VALID)
+
+ {
+ clk (CLK);
+ SC_CTHREAD( entry, clk.pos() );
+ reset_signal_is(reset,true);
+ };
+
+//Process Functionality: Described in the member function below
+ void entry();
+};
+
+// EOF
+
+
+
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/stimulus.cpp b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/stimulus.cpp
new file mode 100644
index 000000000..1263da802
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/stimulus.cpp
@@ -0,0 +1,85 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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() {
+
+ reset.write(true);
+ wait();
+ reset.write(false);
+
+ sc_signed tmp1(8);
+ sc_signed tmp2(8);
+ long tmp3;
+ int tmp4;
+ short tmp5;
+ char tmp6;
+
+ int counter = 0;
+
+ tmp1 = "0b11011011";
+ tmp2 = "0b00000001";
+ tmp3 = 1;
+ tmp4 = -1;
+ tmp5 = 20000;
+ tmp6 = 'R';
+
+ while(counter<100){
+ out_valid.write(true);
+ out_value1.write(tmp1);
+ out_value2.write(tmp2);
+ out_value3.write(tmp3);
+ out_value4.write(tmp4);
+ out_value5.write(tmp5);
+ out_value6.write(tmp6);
+ cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << " " << endl;
+ tmp1 = tmp1 + 1;
+ tmp2 = tmp2 + 1;
+ tmp3 = tmp3 + 1;
+ tmp4 = tmp4 + 1;
+ tmp5 = tmp5 + 1;
+ tmp6 = tmp6 + 1;
+ do { wait(); } while (in_ack==false);
+ out_valid.write(false);
+ counter++;
+ wait();
+ }
+ sc_stop();
+}
+// EOF
diff --git a/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/stimulus.h b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/stimulus.h
new file mode 100644
index 000000000..6f7aeefc8
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/stimulus.h
@@ -0,0 +1,90 @@
+/*****************************************************************************
+
+ 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-30
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ 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& out_value1; // Output port
+ sc_signal_bool_vector& out_value2; // Output port
+ sc_signal<long>& out_value3; // Output port
+ sc_signal<int>& out_value4; // Output port
+ sc_signal<short>& out_value5; // Output port
+ sc_signal<char>& out_value6; // Output port
+ sc_signal<bool>& out_valid; // Output port
+ const sc_signal<bool>& in_ack;
+
+ //
+ // Constructor
+ //
+
+ stimulus(
+ sc_module_name NAME, // reference name
+ sc_clock& CLK, // clock
+ sc_signal<bool>& RESET,
+ sc_signal_bool_vector& OUT_VALUE1,
+ sc_signal_bool_vector& OUT_VALUE2,
+ sc_signal<long>& OUT_VALUE3,
+ sc_signal<int>& OUT_VALUE4,
+ sc_signal<short>& OUT_VALUE5,
+ sc_signal<char>& OUT_VALUE6,
+ sc_signal<bool>& OUT_VALID,
+ const sc_signal<bool>& IN_ACK
+ )
+ :
+ reset (RESET),
+ out_value1 (OUT_VALUE1),
+ out_value2 (OUT_VALUE2),
+ out_value3 (OUT_VALUE3),
+ out_value4 (OUT_VALUE4),
+ out_value5 (OUT_VALUE5),
+ out_value6 (OUT_VALUE6),
+ out_valid (OUT_VALID),
+ in_ack (IN_ACK)
+ {
+ clk (CLK);
+ SC_CTHREAD( entry, clk.pos() );
+ };
+ void entry();
+};
+// EOF