1. 25 6月, 2022 3 次提交
    • 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
  2. 24 6月, 2022 1 次提交
  3. 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
  4. 21 6月, 2022 1 次提交
  5. 20 6月, 2022 2 次提交
  6. 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
  7. 17 6月, 2022 1 次提交
  8. 11 6月, 2022 1 次提交
  9. 09 6月, 2022 5 次提交
  10. 08 6月, 2022 2 次提交
  11. 06 6月, 2022 4 次提交
  12. 02 6月, 2022 1 次提交
    • L
      ittage: we should write new target when alloc · 3b7c55f8
      Lingrui98 提交于
      Previous logic checked the value of old_ctr to select between old target and
      new target when updating ittage table. However, when we need to alloc a new
      entry, the value of old_ctr is X because we do not reset ittage table. So we
      would definitely write an X to the target field, which is the output of the
      mux, as the selector is X.
      3b7c55f8
  13. 31 5月, 2022 2 次提交
  14. 29 5月, 2022 1 次提交
  15. 27 5月, 2022 1 次提交
    • Y
      soc: fix implementation of rtc_clock (#1565) · 88ca983f
      Yinan Xu 提交于
      Previously we made a mistake to connect rtc_clock to rtcTick for CLINT.
      
      rtcTick should be on io_clock clock domain and asserted only one
      clock cycle in io_clock for every cycle in rtc_clock. We add sampling
      registers in this commit to fix this.
      88ca983f
  16. 26 5月, 2022 1 次提交
  17. 25 5月, 2022 2 次提交
  18. 24 5月, 2022 1 次提交
  19. 22 5月, 2022 1 次提交
  20. 21 5月, 2022 1 次提交
  21. 12 5月, 2022 1 次提交
  22. 11 5月, 2022 3 次提交
  23. 09 5月, 2022 2 次提交