1. 12 7月, 2022 4 次提交
    • Y
      jump: delay pc and jalr_target for one cycle (#1640) · 74515c5a
      Yinan Xu 提交于
      74515c5a
    • Y
      ctrl: optimize the timing of dispatch2 stage (#1632) · 1cee9cb8
      Yinan Xu 提交于
      * ctrl: copy dispatch2 to avoid cross-module loops
      
      This commit makes copies of dispatch2 in CtrlBlock to avoid long
      cross-module timing loop paths. Should be good for timing.
      
      * dpq: re-write queue read logic
      
      This commit adds a Reg-Vec to store the queue read data. Since
      most queues read at most the current numRead and the next numRead
      entries, the read timing can be optimized by reading the data one
      cycle earlier.
      1cee9cb8
    • Y
      rs: optimize timing for dispatch and wakeup (#1621) · bcce877b
      Yinan Xu 提交于
      This commit optimizes the timing of reservation stations.
      
      * dispatched uops are latched and bypassed to s1_out
      
      * wakeup from slowPorts are latched and bypassed to s1_data
      
      * rs: optimize allocation selection
      
      Change select policy for allocation. Should avoid issuing the just
      dispatched instructions in some cases.
      
      * rs: disable load balance for load units
      bcce877b
    • Y
      sim,mmio: remove the vga device (#1638) · 613eddad
      Yinan Xu 提交于
      The VGA device may cause assertions in AXI4SlaveModule because it
      may send arbitrary requests to fb (AXI4RAM).
      613eddad
  2. 11 7月, 2022 2 次提交
  3. 10 7月, 2022 1 次提交
    • Y
      core: optimize redirect timing (#1630) · 0dc4893d
      Yinan Xu 提交于
      This commit adds separated redirect registers in ExuBlock and MemBlock.
      They have one cycle latency compared to redirect in CtrlBlock. This will
      help reduce the fanout of redirect registers.
      0dc4893d
  4. 09 7月, 2022 2 次提交
    • Y
      decode: move fusion decoder result Mux to rename (#1631) · 0febc381
      Yinan Xu 提交于
      This commit moves the fusion decoder to both decode and rename stage.
      
      In the decode stage, fusion decoder determines whether the instruction
      pairs can be fused. Valid bits of decode are not affected by fusion
      decoder. This should fix the timing issues of rename.valid.
      
      In the rename stage, some fields are updated according the result of
      fusion decoder. This will bring a minor timing path to both valid and
      other fields in uop in the rename stage. However, since freelist and
      rat have worse timing. This should not cause timing issues.
      0febc381
    • L
      dtlb: replace sram with SyncDataModule (#1627) · e05a24ab
      Lemover 提交于
      * dtlb: replace sram to SyncDataModule, nWays is useless
      
      * itlb: if miss_sameCycle, regnext ptw resp and block tlb check
      
      * dtlb: for normal_entry, when refill, do not need set miss by force
      e05a24ab
  5. 08 7月, 2022 2 次提交
  6. 07 7月, 2022 2 次提交
  7. 06 7月, 2022 5 次提交
  8. 02 7月, 2022 1 次提交
  9. 30 6月, 2022 1 次提交
  10. 29 6月, 2022 2 次提交
  11. 28 6月, 2022 1 次提交
  12. 27 6月, 2022 3 次提交
    • Y
      dp2: add a pipeline for load/store (#1597) · fa9d712c
      Yinan Xu 提交于
      * dp2: add a pipeline for load/store
      
      Load/store Dispatch2 has a bad timing because it requires the fuType
      to disguish the out ports. This brings timing issues because the
      instruction has to read busyTable after the port arbitration.
      
      This commit adds a pipeline in dp2Ls, which may cause performance
      degradation. Instructions are dispatched according to out, and at
      the next cycle it will leave dp2.
      
      * bump difftest trying to fix vcs
      fa9d712c
    • W
      dcache: do not access plru when refill (#1591) · 92816bbc
      William Wang 提交于
      * dcache: do not access plru when refill
      
      Now we have accessed plru when load miss, we should not access plru
      when refill
      
      * dcache: not not access plru when miss queue full
      
      It will help avoid invalid plru access when miss queue full
      92816bbc
    • Z
  13. 26 6月, 2022 1 次提交
    • L
      l2tlb: add counter to ptw-filter to avoid l2tlb deadlock & sync sfence to mmu (#1599) · fa9f9690
      Lemover 提交于
      fix some bugs.
      
      1. fix l2tlb dead-lock bug
      l2tlb won't merge requests at same addr. It will be blocked when having too many requests.
      PtwFilter has a bug that will send too many requests. Add a counter to avoid that.
      
      2. fix sfence sync at mmu
      different modules in mmu may get sfence at different latency, which will lost requests or some requests have no receiver.
      Sync the sfence latency manually to avoid the bug.
      
      * mmu.filter: add counter not to send to many req to l2tlb
      
      * mmu.filter: fix bug that forget counter signal when block issue and deq
      
      * mmu: set sfence/csr delay to 2 cycle, must sync in mmu
      fa9f9690
  14. 25 6月, 2022 4 次提交
    • L
      l2tlb: delay one cycle when read from sram (#1596) · 6c4dcc2d
      Lemover 提交于
      now the l2tlb page cache are divided into:
      1. stageReq: input && read sram valid && will block when sram write
      2. stageDelay: get sram data and delay one cycle
      3. stageCheck: check hit and ecc result
      4. stageResp: output
      6c4dcc2d
    • L
      tlb: divide v-select into two cycle for timing optimization (#1598) · 445d5c05
      Lemover 提交于
      Background:
      dtlb has 128 entries stored in sram. 128 sets, 1 ways.
      advantage: large volume & 1 ways means no tag match logic at data select path
      disadvantage: 128 sets means long latency at valid select, which is a Vec-Register.
      
      Optimization: divide valid select into two-cycles
      445d5c05
    • Y
      freelist: optimize timing of read and writing (#1593) · 5ef86c38
      Yinan Xu 提交于
      This commit optimizes the timing of freelist by changing the updating
      function of headPtr and tailPtr.
      
      We maintains an one-hot representation of headPtr and further uses it to
      read the free registers from the list, which should be better than the
      previous implementation where headPtr is used to indexed into the queue.
      
      The update of tailPtr and the freelist is delayed by one cycle to
      optimize the timing. Because freelist allocates new registers in the
      next cycle iff there are more than RenameWidth free registers in this
      cycle. The freed registers in this cycle will never be used in the next
      cycle. Thus, we can delay the updating of queue data to the next cycle.
      We also move the update of tailPtr to the next cycle, since PopCount
      takes a long timing and we move the last adder to the next cycle. Now
      the adder works parallely with PopCount. That is, the updating of
      tailPtr is pipelined.
      5ef86c38
    • J
      Merge pull request #1587 from OpenXiangShan/chisel-db · b54c2fd9
      Jiawei Lin 提交于
      Added chisel-db to dump hw data into a database automatically
      b54c2fd9
  15. 24 6月, 2022 1 次提交
  16. 22 6月, 2022 1 次提交
    • Y
      core: add buffers for function units across int/fp (#1590) · 5010f3fb
      Yinan Xu 提交于
      This commit adds a buffer after the function unit that operate across
      the integer block and the floating-point block, such as f2i and i2f.
      
      For example, previously the out.ready of f2i depends on whether
      mul/div/csr/jump has a valid instruction out, since f2i has lower
      priority than them. This ready back-propagates from the integer function
      units to the floating-point function units, and finally to the
      floating-point reservation stations (since f2i is fully pipelined).
      
      We add a buffer after the function unit to break this ready
      back-propagation. It incurs one more cycle of execution latency, but we
      leave it not-fully-optimized for now.
      
      Timing can be further optimized if we separates the int writeback and fp
      writeback in function units. In the current version, the ready of f2i
      affects the ready of f2f pipelines, which is unnecessary. This is the
      future work.
      5010f3fb
  17. 21 6月, 2022 1 次提交
  18. 20 6月, 2022 2 次提交
  19. 18 6月, 2022 2 次提交
    • Y
      decode: do not set lsrc of LUI for better timing (#1586) · a19215dd
      Yinan Xu 提交于
      This commit changes the lsrc/psrc of LUI in dispatch instead of
      decode to optimize the timing of lsrc in DecodeStage, which is
      critical for rename table.
      
      lsrc/ldest should be directly get from instr for the timing. Fused
      instructions change lsrc/ldest now, which will be optimized later.
      a19215dd
    • W
      perfcnt: keep strict regularity of perf counter name (#1585) · d18dc7e6
      wakafa 提交于
      * buspmu: avoid inner space in perf-cnt name
      
      * perfcnt: judge regularity of perfname
      
      * perfcnt: fix some irregular perfname
      
      * bump huancun
      d18dc7e6
  20. 17 6月, 2022 1 次提交
  21. 11 6月, 2022 1 次提交