Formatting code to chisel standard

- ran sbt scalafmtAll
  - lot of small formatting changes
- added test that code must stay formatted
  - part of github actions workflow
This commit is contained in:
chick
2021-08-16 15:35:22 -07:00
parent 4e9b44cad8
commit edb1537561
15 changed files with 145 additions and 99 deletions

View File

@@ -24,3 +24,16 @@ jobs:
run: git submodule update --init run: git submodule update --init
- name: Test - name: Test
run: sbt test run: sbt test
doc:
name: Documentation and formatting
runs-on: ubuntu-latest
steps:
- name: Check Formatting
run: sbt scalafmtCheckAll
all_test_passed:
name: "all tests passed"
runs-on: ubuntu-latest
steps:
- run: echo Success

View File

@@ -8,7 +8,7 @@
package barstools.macros package barstools.macros
import barstools.macros.Utils._ import barstools.macros.Utils._
import firrtl.Utils.{BoolType, one, zero} import firrtl.Utils.{one, zero, BoolType}
import firrtl.annotations._ import firrtl.annotations._
import firrtl.ir._ import firrtl.ir._
import firrtl.stage.{FirrtlSourceAnnotation, FirrtlStage, Forms, OutputFileAnnotation, RunFirrtlTransformAnnotation} import firrtl.stage.{FirrtlSourceAnnotation, FirrtlStage, Forms, OutputFileAnnotation, RunFirrtlTransformAnnotation}
@@ -117,8 +117,8 @@ object MacroCompilerAnnotation {
mode: CompilerMode, mode: CompilerMode,
useCompiler: Boolean, useCompiler: Boolean,
forceCompile: Set[String], forceCompile: Set[String],
forceSynflops: Set[String] forceSynflops: Set[String])
) extends Serializable extends Serializable
/** Create a MacroCompilerAnnotation. /** Create a MacroCompilerAnnotation.
* @param c Top-level circuit name (see class description) * @param c Top-level circuit name (see class description)
@@ -869,8 +869,7 @@ object MacroCompiler extends App {
case Some("conf") => case Some("conf") =>
filterForSRAM(readConfFromPath(params.get(Macros))).get.map(x => (new Macro(x)).blackbox) filterForSRAM(readConfFromPath(params.get(Macros))).get.map(x => (new Macro(x)).blackbox)
case _ => case _ =>
filterForSRAM(mdf.macrolib.Utils.readMDFFromPath(params.get(Macros))) filterForSRAM(mdf.macrolib.Utils.readMDFFromPath(params.get(Macros))).get
.get
.map(x => (new Macro(x)).blackbox) .map(x => (new Macro(x)).blackbox)
} }

View File

@@ -3,7 +3,7 @@
package barstools.macros package barstools.macros
import barstools.macros.Utils._ import barstools.macros.Utils._
import firrtl.Utils.{zero, one} import firrtl.Utils.{one, zero}
import firrtl._ import firrtl._
import firrtl.ir._ import firrtl.ir._
import firrtl.passes.MemPortUtils.memPortField import firrtl.passes.MemPortUtils.memPortField

View File

@@ -119,7 +119,6 @@ private class GenerateTopAndHarness(annotations: AnnotationSeq) extends LazyLogg
} }
} }
object GenerateTop extends StageMain(new TapeoutStage(doHarness = false)) object GenerateTop extends StageMain(new TapeoutStage(doHarness = false))
object GenerateTopAndHarness extends StageMain(new TapeoutStage(doHarness = true)) object GenerateTopAndHarness extends StageMain(new TapeoutStage(doHarness = true))

View File

@@ -34,19 +34,24 @@ class ReParentCircuit extends Transform with DependencyAPIMigration {
rmap rmap
} }
val newAnnotations = newTopName.map({ topName => val newAnnotations = newTopName
.map({ topName =>
// Update InstanceTargets and ReferenceTargets // Update InstanceTargets and ReferenceTargets
// Yes, these are identical functions, but the copy methods force separate implementations // Yes, these are identical functions, but the copy methods force separate implementations
def updateInstance(t: InstanceTarget): Option[InstanceTarget] = { def updateInstance(t: InstanceTarget): Option[InstanceTarget] = {
val idx = t.path.lastIndexWhere(_._2.value == topName) val idx = t.path.lastIndexWhere(_._2.value == topName)
if (idx == -1) Some(t.copy(circuit=topName)) else Some(t.copy(circuit=topName, module=topName, path=t.path.drop(idx+1))) if (idx == -1) Some(t.copy(circuit = topName))
else Some(t.copy(circuit = topName, module = topName, path = t.path.drop(idx + 1)))
} }
def updateReference(t: ReferenceTarget): Option[ReferenceTarget] = { def updateReference(t: ReferenceTarget): Option[ReferenceTarget] = {
val idx = t.path.lastIndexWhere(_._2.value == topName) val idx = t.path.lastIndexWhere(_._2.value == topName)
if (idx == -1) Some(t.copy(circuit=topName)) else Some(t.copy(circuit=topName, module=topName, path=t.path.drop(idx+1))) if (idx == -1) Some(t.copy(circuit = topName))
else Some(t.copy(circuit = topName, module = topName, path = t.path.drop(idx + 1)))
} }
AnnotationSeq(state.annotations.toSeq.map({ AnnotationSeq(
state.annotations.toSeq
.map({
case x: SingleTargetAnnotation[InstanceTarget] if x.target.isInstanceOf[InstanceTarget] => case x: SingleTargetAnnotation[InstanceTarget] if x.target.isInstanceOf[InstanceTarget] =>
updateInstance(x.target).map(y => x.duplicate(y)) updateInstance(x.target).map(y => x.duplicate(y))
case x: SingleTargetAnnotation[ReferenceTarget] if x.target.isInstanceOf[ReferenceTarget] => case x: SingleTargetAnnotation[ReferenceTarget] if x.target.isInstanceOf[ReferenceTarget] =>
@@ -59,8 +64,12 @@ class ReParentCircuit extends Transform with DependencyAPIMigration {
})) }))
if (newTargets.flatten.forall(_.isDefined)) Some(x.duplicate(newTargets.map(_.map(_.get)))) else None if (newTargets.flatten.forall(_.isDefined)) Some(x.duplicate(newTargets.map(_.map(_.get)))) else None
case x => Some(x) case x => Some(x)
}).filter(_.isDefined).map(_.get)) })
}).getOrElse(state.annotations) .filter(_.isDefined)
.map(_.get)
)
})
.getOrElse(state.annotations)
state.copy(circuit = newCircuit, renames = mainRename, annotations = newAnnotations) state.copy(circuit = newCircuit, renames = mainRename, annotations = newAnnotations)
} }

View File

@@ -178,4 +178,3 @@ class TapeoutStage(doHarness: Boolean) extends Stage {
annotations annotations
} }
} }

View File

@@ -2,7 +2,7 @@
package barstools.tapeout.transforms.utils package barstools.tapeout.transforms.utils
import chisel3.experimental.{ChiselAnnotation, annotate} import chisel3.experimental.{annotate, ChiselAnnotation}
import firrtl._ import firrtl._
import firrtl.annotations._ import firrtl.annotations._
import firrtl.stage.Forms import firrtl.stage.Forms

View File

@@ -2,7 +2,6 @@ package barstools.macros
import mdf.macrolib.SRAMMacro import mdf.macrolib.SRAMMacro
/** Tests to check that the cost function mechanism is working properly. */ /** Tests to check that the cost function mechanism is working properly. */
/** A test metric that simply favours memories with smaller widths, to test that /** A test metric that simply favours memories with smaller widths, to test that

View File

@@ -187,7 +187,8 @@ class BOOMTest extends MacroCompilerSpec with HasSRAMGenerator {
override val libPrefix = "src/test/resources" override val libPrefix = "src/test/resources"
val memSRAMs = mdf.macrolib.Utils.readMDFFromString(""" val memSRAMs = mdf.macrolib.Utils
.readMDFFromString("""
[ { [ {
"type" : "sram", "type" : "sram",
"name" : "_T_182_ext", "name" : "_T_182_ext",

View File

@@ -91,10 +91,14 @@ class GenerateSpec extends AnyFreeSpec {
val targetDir = "test_run_dir/generate_spec" val targetDir = "test_run_dir/generate_spec"
generateTestData(targetDir) generateTestData(targetDir)
GenerateTop.main(Array( GenerateTop.main(
"-i", s"$targetDir/GenerateExampleTester.fir", Array(
"-o", s"$targetDir/GenerateExampleTester.v" "-i",
)) s"$targetDir/GenerateExampleTester.fir",
"-o",
s"$targetDir/GenerateExampleTester.v"
)
)
new File(s"$targetDir/GenerateExampleTester.v").exists() should be(true) new File(s"$targetDir/GenerateExampleTester.v").exists() should be(true)
} }
} }

View File

@@ -19,9 +19,12 @@ class GenerateTopSpec extends AnyFreeSpec with Matchers {
GenerateTopAndHarness.main( GenerateTopAndHarness.main(
Array( Array(
"-i", s"$targetDir/ExampleModuleNeedsResetInverted.fir", "-i",
"-ll", "info", s"$targetDir/ExampleModuleNeedsResetInverted.fir",
"--log-file", transformListName "-ll",
"info",
"--log-file",
transformListName
) )
) )
@@ -47,26 +50,45 @@ class GenerateTopSpec extends AnyFreeSpec with Matchers {
GenerateTopAndHarness.main( GenerateTopAndHarness.main(
Array( Array(
"--target-dir", "test_run_dir/generate_top_spec", "--target-dir",
"-i", s"$targetDir/BlackBoxFloatTester.fir", "test_run_dir/generate_top_spec",
"-o", "chipyard.unittest.TestHarness.IceNetUnitTestConfig.top.v", "-i",
"-tho", "chipyard.unittest.TestHarness.IceNetUnitTestConfig.harness.v", s"$targetDir/BlackBoxFloatTester.fir",
"-i", "chipyard.unittest.TestHarness.IceNetUnitTestConfig.fir", "-o",
"--syn-top", "UnitTestSuite", "chipyard.unittest.TestHarness.IceNetUnitTestConfig.top.v",
"--harness-top", "TestHarness", "-tho",
"-faf", "chipyard.unittest.TestHarness.IceNetUnitTestConfig.anno.json", "chipyard.unittest.TestHarness.IceNetUnitTestConfig.harness.v",
"-tsaof", "chipyard.unittest.TestHarness.IceNetUnitTestConfig.top.anno.json", "-i",
"-tdf", "firrtl_black_box_resource_files.top.f", "chipyard.unittest.TestHarness.IceNetUnitTestConfig.fir",
"-tsf", "chipyard.unittest.TestHarness.IceNetUnitTestConfig.top.fir", "--syn-top",
"-thaof", "chipyard.unittest.TestHarness.IceNetUnitTestConfig.harness.anno.json", "UnitTestSuite",
"-hdf", "firrtl_black_box_resource_files.harness.f", "--harness-top",
"-thf", "chipyard.unittest.TestHarness.IceNetUnitTestConfig.harness.fir", "TestHarness",
"-faf",
"chipyard.unittest.TestHarness.IceNetUnitTestConfig.anno.json",
"-tsaof",
"chipyard.unittest.TestHarness.IceNetUnitTestConfig.top.anno.json",
"-tdf",
"firrtl_black_box_resource_files.top.f",
"-tsf",
"chipyard.unittest.TestHarness.IceNetUnitTestConfig.top.fir",
"-thaof",
"chipyard.unittest.TestHarness.IceNetUnitTestConfig.harness.anno.json",
"-hdf",
"firrtl_black_box_resource_files.harness.f",
"-thf",
"chipyard.unittest.TestHarness.IceNetUnitTestConfig.harness.fir",
"--infer-rw", "--infer-rw",
"--repl-seq-mem", "-c:TestHarness:-o:chipyard.unittest.TestHarness.IceNetUnitTestConfig.top.mems.conf", "--repl-seq-mem",
"-thconf", "chipyard.unittest.TestHarness.IceNetUnitTestConfig.harness.mems.conf", "-c:TestHarness:-o:chipyard.unittest.TestHarness.IceNetUnitTestConfig.top.mems.conf",
"-td", "test_run_dir/from-ci", "-thconf",
"-ll", "info", "chipyard.unittest.TestHarness.IceNetUnitTestConfig.harness.mems.conf",
"--log-file", logOutputName "-td",
"test_run_dir/from-ci",
"-ll",
"info",
"--log-file",
logOutputName
) )
) )

View File

@@ -22,7 +22,8 @@ class ExampleModuleNeedsResetInverted extends Module with ResetInverter {
class ResetNSpec extends AnyFreeSpec with Matchers { class ResetNSpec extends AnyFreeSpec with Matchers {
"Inverting reset needs to be done throughout module in Chirrtl" in { "Inverting reset needs to be done throughout module in Chirrtl" in {
val chirrtl = (new ChiselStage).emitChirrtl(new ExampleModuleNeedsResetInverted, Array("--target-dir", "test_run_dir/reset_n_spec")) val chirrtl = (new ChiselStage)
.emitChirrtl(new ExampleModuleNeedsResetInverted, Array("--target-dir", "test_run_dir/reset_n_spec"))
chirrtl should include("input reset :") chirrtl should include("input reset :")
(chirrtl should not).include("input reset_n :") (chirrtl should not).include("input reset_n :")
(chirrtl should not).include("node reset = not(reset_n)") (chirrtl should not).include("node reset = not(reset_n)")