Skip to content

Latest commit

 

History

History
30 lines (30 loc) · 481 Bytes

File metadata and controls

30 lines (30 loc) · 481 Bytes

Program Notes

General Notes

  • Provided input that represent trace instruction
    • Load
    • Store
    • Lock
    • Unlock
  • Hit latency = 10
  • Miss latency = 100
  • One instruction start per cycle

Dependencies

Load/Store

  • Load A
  • Store A
  • Must wait until A has been loaded before storing to A

Load/Load

  • Load A
  • Load A
  • No dependency

Store/Load

  • Store A
  • Load A
  • No dependency

PC

Ordered

  • Load/Load
  • Store/Store
  • Load/Store

Relaxed

  • Store/Load