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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
package firrtl.fuzzer
import com.pholser.junit.quickcheck.From
import com.pholser.junit.quickcheck.generator.{Generator, GenerationStatus}
import com.pholser.junit.quickcheck.random.SourceOfRandomness
import firrtl.{ChirrtlForm, CircuitState, LowFirrtlCompiler}
import firrtl.ir.Circuit
import org.junit.Assert
import org.junit.runner.RunWith
import java.io.{PrintWriter, StringWriter}
import edu.berkeley.cs.jqf.fuzz.Fuzz;
import edu.berkeley.cs.jqf.fuzz.JQF;
/** a GenMonad backed by [[com.pholser.junit.quickcheck.random.SourceOfRandomness SourceOfRandomness]]
*/
trait SourceOfRandomnessGen[A] {
def apply(): A
def flatMap[B](f: A => SourceOfRandomnessGen[B]): SourceOfRandomnessGen[B] =
SourceOfRandomnessGen { f(apply())() }
def map[B](f: A => B): SourceOfRandomnessGen[B] =
SourceOfRandomnessGen { f(apply()) }
def widen[B >: A]: SourceOfRandomnessGen[B] =
SourceOfRandomnessGen { apply() }
}
object SourceOfRandomnessGen {
implicit def sourceOfRandomnessGenGenMonadInstance(implicit r: SourceOfRandomness): GenMonad[SourceOfRandomnessGen] = new GenMonad[SourceOfRandomnessGen] {
import scala.collection.JavaConverters.seqAsJavaListConverter
type G[T] = SourceOfRandomnessGen[T]
def flatMap[A, B](a: G[A])(f: A => G[B]): G[B] = a.flatMap(f)
def map[A, B](a: G[A])(f: A => B): G[B] = a.map(f)
def choose(min: Int, max: Int): G[Int] = SourceOfRandomnessGen {
r.nextLong(min, max).toInt // use r.nextLong instead of r.nextInt because r.nextInt is exclusive of max
}
def oneOf[T](items: T*): G[T] = {
val arr = seqAsJavaListConverter(items)
const(arr.asJava).map(r.choose(_))
}
def const[T](c: T): G[T] = SourceOfRandomnessGen(c)
def widen[A, B >: A](ga: G[A]): G[B] = ga.widen[B]
def generate[A](ga: G[A]): A = ga.apply()
}
def apply[T](f: => T): SourceOfRandomnessGen[T] = new SourceOfRandomnessGen[T] {
def apply(): T = f
}
}
class FirrtlSingleModuleGenerator extends Generator[Circuit](classOf[Circuit]) {
override def generate(random: SourceOfRandomness, status: GenerationStatus): Circuit = {
implicit val r = random
import ExprGen._
val params = ExprGenParams(
maxDepth = 50,
maxWidth = 31,
generators = Seq(
1 -> AddDoPrimGen,
1 -> SubDoPrimGen,
1 -> MulDoPrimGen,
1 -> DivDoPrimGen,
1 -> LtDoPrimGen,
1 -> LeqDoPrimGen,
1 -> GtDoPrimGen,
1 -> GeqDoPrimGen,
1 -> EqDoPrimGen,
1 -> NeqDoPrimGen,
1 -> PadDoPrimGen,
1 -> ShlDoPrimGen,
1 -> ShrDoPrimGen,
1 -> DshlDoPrimGen,
1 -> CvtDoPrimGen,
1 -> NegDoPrimGen,
1 -> NotDoPrimGen,
1 -> AndDoPrimGen,
1 -> OrDoPrimGen,
1 -> XorDoPrimGen,
1 -> AndrDoPrimGen,
1 -> OrrDoPrimGen,
1 -> XorrDoPrimGen,
1 -> CatDoPrimGen,
1 -> BitsDoPrimGen,
1 -> HeadDoPrimGen,
1 -> TailDoPrimGen,
1 -> AsUIntDoPrimGen,
1 -> AsSIntDoPrimGen
)
)
params.generateSingleExprCircuit[SourceOfRandomnessGen]()
}
}
@RunWith(classOf[JQF])
class FirrtlCompileTests {
private val lowFirrtlCompiler = new LowFirrtlCompiler()
private val header = "=" * 50 + "\n"
private val footer = header
private def message(c: Circuit, t: Throwable): String = {
val sw = new StringWriter()
val pw = new PrintWriter(sw)
t.printStackTrace(pw)
pw.flush()
header + c.serialize + "\n" + sw.toString + footer
}
@Fuzz
def compileSingleModule(@From(value = classOf[FirrtlSingleModuleGenerator]) c: Circuit) = {
compile(CircuitState(c, ChirrtlForm, Seq()))
}
// adapted from chisel3.Driver.execute and firrtl.Driver.execute
def compile(c: CircuitState) = {
val compiler = lowFirrtlCompiler
try {
val res = compiler.compile(c, Seq())
} catch {
case e: firrtl.CustomTransformException =>
Assert.assertTrue(message(c.circuit, e.cause), false)
case any : Throwable =>
Assert.assertTrue(message(c.circuit, any), false)
}
}
}
|