aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/Emitter.scala
diff options
context:
space:
mode:
authorSchuyler Eldridge2019-04-22 21:20:08 -0400
committerSchuyler Eldridge2019-04-25 16:24:15 -0400
commitef8f06f23b9ee6cf86de2450752dfd0fcd32da80 (patch)
tree79e2e8c5753903ca6d14e9b952c26a07442bd980 /src/main/scala/firrtl/Emitter.scala
parent47fe781c4ace38dff7f31da7e78f772e131d689e (diff)
Add ShellOption, DeletedWrapper
Abstracts away option writing such that users no longer have to understand scopt semantics. This adds a ShellOption class and a HasShellOptions trait for something which provides one or more ShellOptions. This refactors the FIRRTL codebase to use this style of option specification. Adds and uses DeletedWrapper to automatically generate DeletedAnnotations. Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
Diffstat (limited to 'src/main/scala/firrtl/Emitter.scala')
-rw-r--r--src/main/scala/firrtl/Emitter.scala48
1 files changed, 23 insertions, 25 deletions
diff --git a/src/main/scala/firrtl/Emitter.scala b/src/main/scala/firrtl/Emitter.scala
index 44190b39..3bbba289 100644
--- a/src/main/scala/firrtl/Emitter.scala
+++ b/src/main/scala/firrtl/Emitter.scala
@@ -19,7 +19,7 @@ import firrtl.PrimOps._
import firrtl.WrappedExpression._
import Utils._
import MemPortUtils.{memPortField, memType}
-import firrtl.options.{HasScoptOptions, StageUtils, PhaseException}
+import firrtl.options.{HasShellOptions, ShellOption, StageUtils, PhaseException}
import firrtl.stage.RunFirrtlTransformAnnotation
import scopt.OptionParser
// Datastructures
@@ -34,14 +34,12 @@ sealed trait EmitAnnotation extends NoTargetAnnotation {
case class EmitCircuitAnnotation(emitter: Class[_ <: Emitter]) extends EmitAnnotation
case class EmitAllModulesAnnotation(emitter: Class[_ <: Emitter]) extends EmitAnnotation
-object EmitCircuitAnnotation extends HasScoptOptions {
- def addOptions(p: OptionParser[AnnotationSeq]): Unit = p
- .opt[String]("emit-circuit")
- .abbr("E")
- .valueName("<chirrtl|high|middle|low|verilog|mverilog|sverilog>")
- .unbounded()
- .action{ (x, c) =>
- val xx = x match {
+object EmitCircuitAnnotation extends HasShellOptions {
+
+ val options = Seq(
+ new ShellOption[String](
+ longOption = "emit-circuit",
+ toAnnotationSeq = (a: String) => a match {
case "chirrtl" => Seq(RunFirrtlTransformAnnotation(new ChirrtlEmitter),
EmitCircuitAnnotation(classOf[ChirrtlEmitter]))
case "high" => Seq(RunFirrtlTransformAnnotation(new HighFirrtlEmitter),
@@ -54,20 +52,19 @@ object EmitCircuitAnnotation extends HasScoptOptions {
EmitCircuitAnnotation(classOf[VerilogEmitter]))
case "sverilog" => Seq(RunFirrtlTransformAnnotation(new SystemVerilogEmitter),
EmitCircuitAnnotation(classOf[SystemVerilogEmitter]))
- case _ => throw new PhaseException(s"Unknown emitter '$x'! (Did you misspell it?)")
- }
- xx ++ c }
- .text("Run the specified circuit emitter (all modules in one file)")
+ case _ => throw new PhaseException(s"Unknown emitter '$a'! (Did you misspell it?)") },
+ helpText = "Run the specified circuit emitter (all modules in one file)",
+ shortOption = Some("E"),
+ helpValueName = Some("<chirrtl|high|middle|low|verilog|mverilog|sverilog>") ) )
+
}
-object EmitAllModulesAnnotation extends HasScoptOptions {
- def addOptions(p: OptionParser[AnnotationSeq]): Unit = p
- .opt[String]("emit-modules")
- .abbr("e")
- .valueName("<none|high|middle|low|verilog|mverilog|sverilog>")
- .unbounded()
- .action{ (x, c) =>
- val xx = x match {
+object EmitAllModulesAnnotation extends HasShellOptions {
+
+ val options = Seq(
+ new ShellOption[String](
+ longOption = "emit-modules",
+ toAnnotationSeq = (a: String) => a match {
case "chirrtl" => Seq(RunFirrtlTransformAnnotation(new ChirrtlEmitter),
EmitAllModulesAnnotation(classOf[ChirrtlEmitter]))
case "high" => Seq(RunFirrtlTransformAnnotation(new HighFirrtlEmitter),
@@ -80,10 +77,11 @@ object EmitAllModulesAnnotation extends HasScoptOptions {
EmitAllModulesAnnotation(classOf[VerilogEmitter]))
case "sverilog" => Seq(RunFirrtlTransformAnnotation(new SystemVerilogEmitter),
EmitAllModulesAnnotation(classOf[SystemVerilogEmitter]))
- case _ => throw new PhaseException(s"Unknown emitter '$x'! (Did you misspell it?)")
- }
- xx ++ c }
- .text("Run the specified module emitter (one file per module)")
+ case _ => throw new PhaseException(s"Unknown emitter '$a'! (Did you misspell it?)") },
+ helpText = "Run the specified module emitter (one file per module)",
+ shortOption = Some("e"),
+ helpValueName = Some("<chirrtl|high|middle|low|verilog|mverilog|sverilog>") ) )
+
}
// ***** Annotations for results of emission *****