summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorSchuyler Eldridge2019-01-14 14:29:46 -0500
committerSchuyler Eldridge2019-05-22 16:17:17 -0400
commit121e3d87598f2056b76846472970620d046c2487 (patch)
tree7810b9719a024e90dd2eeab6e45d39928faf0263 /src/main
parent0e6eb5b35a442edf70ad37f963526609f2ba1f3c (diff)
Add stage.phases.AddImplicitOutputAnnotationFile
Co-Authored-By: Schuyler Eldridge <schuyler.eldridge@ibm.com> Co-Authored-By: chick <chick@qrhino.com> Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
Diffstat (limited to 'src/main')
-rw-r--r--src/main/scala/chisel3/stage/phases/AddImplicitOutputAnnotationFile.scala25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/main/scala/chisel3/stage/phases/AddImplicitOutputAnnotationFile.scala b/src/main/scala/chisel3/stage/phases/AddImplicitOutputAnnotationFile.scala
new file mode 100644
index 00000000..de251ab6
--- /dev/null
+++ b/src/main/scala/chisel3/stage/phases/AddImplicitOutputAnnotationFile.scala
@@ -0,0 +1,25 @@
+// See LICENSE for license details.
+
+package chisel3.stage.phases
+
+import chisel3.stage.ChiselCircuitAnnotation
+import firrtl.AnnotationSeq
+import firrtl.options.{OutputAnnotationFileAnnotation, Phase}
+
+/** Adds an [[firrtl.options.OutputAnnotationFileAnnotation]] if one does not exist. This replicates old behavior where
+ * an output annotation file was always written.
+ */
+class AddImplicitOutputAnnotationFile extends Phase {
+
+ def transform(annotations: AnnotationSeq): AnnotationSeq = annotations
+ .collectFirst{ case _: OutputAnnotationFileAnnotation => annotations }
+ .getOrElse{
+
+ val x: Option[AnnotationSeq] = annotations
+ .collectFirst{ case a: ChiselCircuitAnnotation =>
+ OutputAnnotationFileAnnotation(a.circuit.name) +: annotations }
+
+ x.getOrElse(annotations)
+ }
+
+}