1. May 26, 2022
  2. May 25, 2022
  3. May 24, 2022
  4. May 20, 2022
  5. May 19, 2022
  6. May 16, 2022
  7. May 13, 2022
  8. May 12, 2022
  9. May 10, 2022
  10. May 04, 2022
  11. Apr 29, 2022
    • Megan Wachs's avatar
      Utils: add source locators (#2496) · b24f09c7
      Megan Wachs authored
      * Cat: add source locators
      
      * make test handle both cases
      
      * test that the wrong source locator is not included for Cat
      
      * Add source locators to FillInterleaved and test
      
      * Add Bitwise Spec
      
      * add FillSpec
      
      * Reverse Spec
      
      * Checkpoint -- doesn't compile
      
      * Make source locators more correct with do_apply methods
      
      * add source locators to Reg.scala
      
      * RegEnable source locator tests
      
      * ShiftRegisters source locators unit tests
      
      * scalafmt
      
      * clean up spacing and final defs
      
      * scalafmt
      
      * scaladoc groups
      b24f09c7
    • Kevin Laeufer's avatar
      remove experimental.verification package (#2511) · 2f80a9e4
      Kevin Laeufer authored
      All functions inside this package were deprecated
      in the 3.5 release, so it is appropriate to remove
      them for 3.6
      2f80a9e4
  12. Apr 27, 2022
  13. Apr 26, 2022
  14. Apr 21, 2022
  15. Apr 20, 2022
  16. Apr 19, 2022
  17. Apr 16, 2022
  18. Apr 12, 2022
  19. Apr 06, 2022
  20. Apr 05, 2022
  21. Apr 02, 2022
  22. Mar 31, 2022
    • Jack Koenig's avatar
      Use var List instead of ListBuffer to save memory (#2465) · cf410180
      Jack Koenig authored
      This reduces memory use of every HasId by 64 bytes.
      
      Every instance of HasId (including all Data) had 2 ListBuffer vals for
      recording post-naming hooks, yet this feature is almost never used.
      These are now vars of type List which allows the common case of Nil to
      add no incremental memory use per instance of HasId.
      cf410180