Skip to content

Commit

Permalink
remove chiselName, fix for chipsalliance/chisel#2694 (riscv-boom#616)
Browse files Browse the repository at this point in the history
  • Loading branch information
sequencer authored Jan 4, 2023
1 parent 570d135 commit ed783aa
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions src/main/scala/exu/execution-units/functional-unit.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ package boom.exu

import chisel3._
import chisel3.util._
import chisel3.experimental.chiselName

import freechips.rocketchip.config.Parameters
import freechips.rocketchip.rocket.ALU._
Expand Down Expand Up @@ -279,7 +278,6 @@ abstract class PipelinedFunctionalUnit(
* @param numStages how many pipeline stages does the functional unit have
* @param dataWidth width of the data being operated on in the functional unit
*/
@chiselName
class ALUUnit(isJmpUnit: Boolean = false, numStages: Int = 1, dataWidth: Int)(implicit p: Parameters)
extends PipelinedFunctionalUnit(
numStages = numStages,
Expand Down
2 changes: 0 additions & 2 deletions src/main/scala/exu/rob.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import scala.math.ceil

import chisel3._
import chisel3.util._
import chisel3.experimental.chiselName

import freechips.rocketchip.config.Parameters
import freechips.rocketchip.util.Str
Expand Down Expand Up @@ -208,7 +207,6 @@ class DebugRobSignals(implicit p: Parameters) extends BoomBundle
* @param numWakeupPorts number of wakeup ports to the ROB
* @param numFpuPorts number of FPU units that will write back fflags
*/
@chiselName
class Rob(
val numWakeupPorts: Int,
val numFpuPorts: Int
Expand Down
2 changes: 0 additions & 2 deletions src/main/scala/ifu/icache.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import chisel3._
import chisel3.util._
import chisel3.util.random._
import chisel3.internal.sourceinfo.{SourceInfo}
import chisel3.experimental.{chiselName}

import freechips.rocketchip.config.{Parameters}
import freechips.rocketchip.diplomacy._
Expand Down Expand Up @@ -103,7 +102,6 @@ object GetPropertyByHartId
*
* @param outer top level ICache class
*/
@chiselName
class ICacheModule(outer: ICache) extends LazyModuleImp(outer)
with HasBoomFrontendParameters
{
Expand Down

0 comments on commit ed783aa

Please sign in to comment.