/*************************************************************************************** * Copyright (c) 2020-2021 Institute of Computing Technology, Chinese Academy of Sciences * Copyright (c) 2020-2021 Peng Cheng Laboratory * * XiangShan is licensed under Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. * * See the Mulan PSL v2 for more details. ***************************************************************************************/ package xiangshan.backend.fu import org.chipsalliance.cde.config.Parameters import chisel3._ import chisel3.util._ import utility._ import utils._ import xiangshan._ import xiangshan.backend._ import xiangshan.backend.decode.ImmUnion import xiangshan.backend.decode.isa._ trait HasRedirectOut { this: XSModule => val redirectOutValid = IO(Output(Bool())) val redirectOut = IO(Output(new Redirect)) } class JumpDataModule(implicit p: Parameters) extends XSModule { val io = IO(new Bundle() { val src = Input(UInt(XLEN.W)) val pc = Input(UInt(XLEN.W)) // sign-ext to XLEN val imm = Input(UInt(33.W)) // imm-U need 32 bits, highest bit is sign bit val nextPcOffset = Input(UInt((log2Up(PredictWidth) + 1).W)) val func = Input(FuOpType()) val isRVC = Input(Bool()) val result, target = Output(UInt(XLEN.W)) val isAuipc = Output(Bool()) }) val (src1, pc, imm, func, isRVC) = (io.src, io.pc, io.imm, io.func, io.isRVC) val isJalr = JumpOpType.jumpOpisJalr(func) val isAuipc = JumpOpType.jumpOpisAuipc(func) val offset = SignExt(imm, XLEN) val snpc = pc + (io.nextPcOffset << instOffsetBits).asUInt val target = Mux(JumpOpType.jumpOpisJalr(func), src1 + offset, pc + offset) // NOTE: src1 is (pc/rf(rs1)), src2 is (offset) // RISC-V spec for JALR: // The target address is obtained by adding the sign-extended 12-bit I-immediate to the register rs1, // then setting the least-significant bit of the result to zero. io.target := Cat(target(XLEN - 1, 1), false.B) io.result := Mux(JumpOpType.jumpOpisAuipc(func), target, snpc) io.isAuipc := isAuipc }