source: trunk/IPs/systemC/Environnement/Cache/src/Cache_OneLevel_index_victim.cpp @ 78

Last change on this file since 78 was 78, checked in by rosiere, 16 years ago

Add :

  • Execute_loop (must be test systemC)
  • Prediction
    • Direction : predifined scheme
    • Branch Target Buffer
  • iFetch_unit
    • ifetch_queue
    • pc management
  • Decod_unit
    • coming soon : support for custom operation
  • Rename_unit
    • RAT
    • Free_list
    • Dependence RAW check
    • Load store unit pointer
  • New Environnement (hierarchy_memory will remove in a next version)


Modif :

  • Manage Custom Operation
  • All component in execute_loop to use the new statistics management

Not Finish :

  • Return Address Stack
  • Environnement
File size: 367 bytes
Line 
1#include "../include/Cache_OneLevel.h"
2
3namespace environnement {
4namespace cache {
5namespace cache_onelevel {
6
7  // return the index of the next victim
8  uint32_t Cache_OneLevel::index_victim (uint32_t familly)
9  {
10    uint32_t victim = 0;
11    while (tag [familly][victim].index_lru != (param->associativity-1))
12      victim ++;
13   
14    return victim;
15  }
16};
17};
18};
Note: See TracBrowser for help on using the repository browser.