blob: 4cb25e5dbdae974884dd58b2c0222a4725b445e3 [file] [log] [blame]
/*****************************************************************************
Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
more contributor license agreements. See the NOTICE file distributed
with this work for additional information regarding copyright ownership.
Accellera licenses this file to you under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with the
License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied. See the License for the specific language governing
permissions and limitations under the License.
*****************************************************************************/
/*****************************************************************************
test01.cpp --
Original Author: 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:
*****************************************************************************/
// test of the reduce methods in the sc_[u]int datatypes -- method notation
#include "systemc.h"
int
sc_main( int, char*[] )
{
// 1) check the existence of the reduce methods
sc_int<42> a = 42;
// sc_int_base
cout << endl;
cout << a.and_reduce() << endl;
cout << a.or_reduce() << endl;
cout << a.xor_reduce() << endl;
cout << a.nand_reduce() << endl;
cout << a.nor_reduce() << endl;
cout << a.xnor_reduce() << endl;
// sc_int_subref
cout << endl;
cout << a( 7, 0 ).and_reduce() << endl;
cout << a( 7, 0 ).or_reduce() << endl;
cout << a( 7, 0 ).xor_reduce() << endl;
cout << a( 7, 0 ).nand_reduce() << endl;
cout << a( 7, 0 ).nor_reduce() << endl;
cout << a( 7, 0 ).xnor_reduce() << endl;
// sc_int_concref<T1,T2>
cout << endl;
cout << ( a( 7, 0 ), a( 15, 8 ) ).and_reduce() << endl;
cout << ( a( 7, 0 ), a( 15, 8 ) ).or_reduce() << endl;
cout << ( a( 7, 0 ), a( 15, 8 ) ).xor_reduce() << endl;
cout << ( a( 7, 0 ), a( 15, 8 ) ).nand_reduce() << endl;
cout << ( a( 7, 0 ), a( 15, 8 ) ).nor_reduce() << endl;
cout << ( a( 7, 0 ), a( 15, 8 ) ).xnor_reduce() << endl;
sc_uint<42> b = 42;
// sc_uint_base
cout << endl;
cout << b.and_reduce() << endl;
cout << b.or_reduce() << endl;
cout << b.xor_reduce() << endl;
cout << b.nand_reduce() << endl;
cout << b.nor_reduce() << endl;
cout << b.xnor_reduce() << endl;
// sc_uint_subref
cout << endl;
cout << b( 7, 0 ).and_reduce() << endl;
cout << b( 7, 0 ).or_reduce() << endl;
cout << b( 7, 0 ).xor_reduce() << endl;
cout << b( 7, 0 ).nand_reduce() << endl;
cout << b( 7, 0 ).nor_reduce() << endl;
cout << b( 7, 0 ).xnor_reduce() << endl;
// sc_uint_concref<T1,T2>
cout << endl;
cout << ( b( 7, 0 ), b( 15, 8 ) ).and_reduce() << endl;
cout << ( b( 7, 0 ), b( 15, 8 ) ).or_reduce() << endl;
cout << ( b( 7, 0 ), b( 15, 8 ) ).xor_reduce() << endl;
cout << ( b( 7, 0 ), b( 15, 8 ) ).nand_reduce() << endl;
cout << ( b( 7, 0 ), b( 15, 8 ) ).nor_reduce() << endl;
cout << ( b( 7, 0 ), b( 15, 8 ) ).xnor_reduce() << endl;
// 2) check the functionality of the reduce methods
sc_int<2> c2 = -1;
cout << endl;
cout << c2.and_reduce() << endl;
cout << c2.xor_reduce() << endl;
sc_int<3> c3 = -1;
cout << endl;
cout << c3.and_reduce() << endl;
cout << c3.xor_reduce() << endl;
sc_uint<2> d2 = sc_dt::uint_type( -1 );
cout << endl;
cout << d2.and_reduce() << endl;
cout << d2.xor_reduce() << endl;
sc_uint<3> d3 = sc_dt::uint_type( -1 );
cout << endl;
cout << d3.and_reduce() << endl;
cout << d3.xor_reduce() << endl;
sc_int<6> e;
sc_uint<6> f;
cout << endl;
for( int i = 0; i >= -10; -- i ) {
e = i;
f = i;
cout << e.xor_reduce() << endl;
cout << f.xor_reduce() << endl;
}
return 0;
}