1. Jul 19, 2023
    • Jack Koenig's avatar
      Add support for configurable warnings (#3414) · 7d6d0687
      Jack Koenig authored
      Warnings have been assigned unique integers to use as identifiers for
      purposes of documentation and configuration.
      
      New CLI option --warn-conf accepts a comma-separated sequence of
      <filter>:<action> pairs for customizing warnings.
      
      Supported filters are:
      * any          - matches all warnings
      * id=<integer> - matches warnings with the integer id
      * src=<glob>   - matches warnings where <glob> matches the warning
                       source file
      
      id and src filters can be combined with &.
      
      Supported actions are:
      * :s - suppress the warning
      * :w - report the warning as a warning (default behavior)
      * :e - error on the warning
      
      For example, the new Vec dynamic width matching warning can be
      suppressed for source files in src/main/scala while all other warnings
      elevated to errors with:
        --warn-conf "id=4&src=src/main/scala/**:s,any:e"
      
      The is also --warn-conf-file which works similarly to --warn-conf except
      the <filter>:<action> pairs are newline separated in a file. # is used
      for line comments.
      
      (cherry picked from commit 8e33a68b)
      
      # Conflicts:
      #	core/src/main/scala/chisel3/Aggregate.scala
      #	core/src/main/scala/chisel3/internal/package.scala
      #	src/test/scala/chiselTests/ConstSpec.scala
      #	src/test/scala/chiselTests/ProbeSpec.scala
      7d6d0687
  2. Jul 18, 2023
    • mergify[bot]'s avatar
      Sanitize Record._elements (backport #3419) (#3427) · 1de70de5
      mergify[bot] authored
      * Sanitize Record._elements (#3419)
      
      This moves name sanitation a little earlier and ensures that the
      sanitized names are use more consistently throughout Chisel internals.
      
      This fixes a bug in D/I where unsanitary names would lead to a crash.
      
      (cherry picked from commit 5c282db5
      
      )
      
      * Keep Scala 2.12 support by not using VectorMap
      
      * Fix firrtl in tests for older firrtl spec version
      
      ---------
      
      Co-authored-by: default avatarJack Koenig <koenig@sifive.com>
      1de70de5
  3. Jul 06, 2023
  4. Jun 30, 2023
  5. Jun 28, 2023
  6. Jun 23, 2023
  7. Jun 15, 2023
  8. Jun 10, 2023
  9. Jun 09, 2023
  10. Jun 08, 2023
  11. Jun 07, 2023
  12. Jun 02, 2023
  13. May 31, 2023
  14. May 20, 2023
  15. May 19, 2023
  16. May 16, 2023
  17. May 10, 2023
  18. May 09, 2023
  19. May 06, 2023
  20. May 05, 2023
  21. May 03, 2023
  22. May 02, 2023
  23. Apr 27, 2023