summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Waterman2016-02-03 23:48:11 -0800
committerAndrew Waterman2016-02-03 23:48:11 -0800
commit7fc2ea6a14da441db9c47d094361fea07436f6d3 (patch)
treedfaa550a34646d22a5bc772cfe1f23a98bc1de80 /src
parentcaeecf42118c9561193770bc2a4ff0d741fb6c9a (diff)
parentc7f3003458d1ad8ba5e794e03ee3df0bb44154fd (diff)
Merge pull request #76 from ucb-bar/assertmacro
Make assert failures more informative using macros
Diffstat (limited to 'src')
-rw-r--r--src/main/scala/Chisel/CoreUtil.scala41
1 files changed, 30 insertions, 11 deletions
diff --git a/src/main/scala/Chisel/CoreUtil.scala b/src/main/scala/Chisel/CoreUtil.scala
index eed90410..0dc90c29 100644
--- a/src/main/scala/Chisel/CoreUtil.scala
+++ b/src/main/scala/Chisel/CoreUtil.scala
@@ -6,6 +6,9 @@ import internal._
import internal.Builder.pushCommand
import internal.firrtl._
+import scala.language.experimental.macros
+import scala.reflect.macros.blackbox.Context
+
object assert {
/** Checks for a condition to be valid in the circuit at all times. If the
* condition evaluates to false, the circuit simulation stops with an error.
@@ -20,26 +23,42 @@ object assert {
*
* @param cond condition, assertion fires (simulation fails) when false
* @param message optional message to print when the assertion fires
+ *
+ * @note currently cannot be used in core Chisel / libraries because macro
+ * defs need to be compiled first and the SBT project is not set up to do
+ * that
*/
- def apply(cond: Bool, message: String) {
+ def apply(cond: Bool, message: String): Unit = macro apply_impl_msg
+ def apply(cond: Bool): Unit = macro apply_impl // macros currently can't take default arguments
+
+ def apply_impl_msg(c: Context)(cond: c.Tree, message: c.Tree): c.Tree = {
+ import c.universe._
+ val p = c.enclosingPosition
+ val condStr = s"${p.source.file.name}:${p.line} ${p.lineContent.trim}"
+ val apply_impl_do = symbolOf[this.type].asClass.module.info.member(TermName("apply_impl_do"))
+ q"$apply_impl_do($cond, $condStr, _root_.scala.Some($message))"
+ }
+
+ def apply_impl(c: Context)(cond: c.Tree): c.Tree = {
+ import c.universe._
+ val p = c.enclosingPosition
+ val condStr = s"${p.source.file.name}:${p.line} ${p.lineContent.trim}"
+ val apply_impl_do = symbolOf[this.type].asClass.module.info.member(TermName("apply_impl_do"))
+ q"$apply_impl_do($cond, $condStr, _root_.scala.None)"
+ }
+
+ def apply_impl_do(cond: Bool, line: String, message: Option[String]) {
when (!Builder.dynamicContext.currentModule.get.reset) {
when(!cond) {
- if (message.isEmpty()) {
- printf(s"Assertion failed: (TODO: code / lineno)")
- } else {
- printf(s"Assertion failed: (TODO: code / lineno): $message")
+ message match {
+ case Some(str) => printf(s"Assertion failed: $line: $str\n")
+ case None => printf(s"Assertion failed: $line\n")
}
pushCommand(Stop(Node(Builder.dynamicContext.currentModule.get.clock), 1))
}
}
}
- /** A workaround for default-value overloading problems in Scala, just
- * 'assert(cond, "")' */
- def apply(cond: Bool) {
- assert(cond, "")
- }
-
/** An elaboration-time assertion, otherwise the same as the above run-time
* assertion. */
def apply(cond: Boolean, message: String) {