2 1 11 Multiple Issue

Поделиться
HTML-код
  • Опубликовано: 21 окт 2018

Комментарии • 7

  • @juppkutschinski
    @juppkutschinski Год назад +5

    IPC = 1/CPI not IPC = CPI-1 as on one of the later slides.

  • @Ting3624
    @Ting3624 3 года назад

    Thanks for the video!
    But I am confused @ 15:30
    Why does ADD.D has to wait for LD to commit before writing to CDB? Hasn't the result of ADD.D already been calculated at cc 8 and ready to write to CDB at cc 9?

    • @inccoruptible13
      @inccoruptible13 3 года назад

      No the result of ADD.D begins at cc8 and writes at cdb at 11 therefore commits at 12. In the video the teacher says "has to wait for the L.D, to begin EX" and also he highlights that it follows the L.D commit stage

  • @kamaleshkhanna4735
    @kamaleshkhanna4735 4 года назад

    DADDI need not stall for a clock cycle because it is a dual-issue superscalar and 2 instructions can be executed in one clock cycle.

    • @TheNewTimeNetwork
      @TheNewTimeNetwork 3 года назад +2

      The architecture is dual-issue, but it does not have two integer FUs. Furthermore, the integer FU is used for effective address calculation for loads and stores. Therefore, even though DADDI can be issued in the same cycle as the preceding S.D, its execution stalls due to a structural hazard at the integer FU which is occupied with effective address calculation for the S.D.

    • @manojkhatri6537
      @manojkhatri6537 Год назад

      @@TheNewTimeNetwork Right, this is the strength of dynamically scheduled processor

  • @deepanshukoshta9284
    @deepanshukoshta9284 4 года назад

    Subsequent L.D can only start after DADDI broadcasts its result. Am I right?