blob: 9cbadbc15e904e1db50e632fd1904216113c9347 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// SPDX-License-Identifier: Apache-2.0
package chiselTests
import chisel3._
import chisel3.testers.BasicTester
class BitwiseOpsTester(w: Int, _a: Int, _b: Int) extends BasicTester {
val mask = (1 << w) - 1
val a = _a.asUInt(w.W)
val b = _b.asUInt(w.W)
assert(~a === (mask & ~_a).asUInt)
assert((a & b) === (_a & _b).asUInt)
assert((a | b) === (_a | _b).asUInt)
assert((a ^ b) === (_a ^ _b).asUInt)
assert((a.orR) === (_a != 0).asBool)
assert((a.andR) === (s"%${w}s".format(BigInt(_a).toString(2)).foldLeft(true)(_ && _ == '1') ).asBool)
stop()
}
class BitwiseOpsSpec extends ChiselPropSpec {
property("All bit-wise ops should return the correct result") {
forAll(safeUIntPair) { case(w: Int, a: Int, b: Int) =>
assertTesterPasses{ new BitwiseOpsTester(w, a, b) }
}
}
}
|