source: trunk/IPs/systemC/Environnement/Cache/src/Cache_OneLevel_translate_address.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: 832 bytes
Line 
1#include "../include/Cache_OneLevel.h"
2
3namespace environnement {
4namespace cache {
5namespace cache_onelevel {
6
7  Address Cache_OneLevel::translate_address (uint32_t address)
8  {
9    Address  address_translated;
10    uint32_t shift;
11   
12    address_translated.offset  = (address & ((uint32_t)-1 >> (32-(size_address.offset          ))));
13    address                   -= address_translated.offset;
14    shift                      = size_address.offset;
15    address_translated.familly = (address & ((uint32_t)-1 >> (32-(size_address.familly + shift))))>>shift;
16    address                   -= address_translated.familly;
17    shift                     += size_address.familly;
18    address_translated.tag     = (address & ((uint32_t)-1 >> (32-(size_address.tag     + shift))))>>shift;
19   
20    return address_translated;
21  }
22
23};
24};
25};
Note: See TracBrowser for help on using the repository browser.