|
Last change
on this file since 78 was
78,
checked in by rosiere, 18 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:
493 bytes
|
| Line | |
|---|
| 1 | #include "../include/Cache.h" |
|---|
| 2 | |
|---|
| 3 | namespace environnement { |
|---|
| 4 | namespace cache { |
|---|
| 5 | |
|---|
| 6 | std::ostream& operator<< (std::ostream& output, Cache & x) |
|---|
| 7 | { |
|---|
| 8 | output << x.information(0) << std::endl; |
|---|
| 9 | |
|---|
| 10 | for (uint32_t i=0; i<x.param->nb_cache_dedicated; i++) |
|---|
| 11 | output << *(x.icache_dedicated[i]) << std::endl; |
|---|
| 12 | for (uint32_t i=0; i<x.param->nb_cache_dedicated; i++) |
|---|
| 13 | output << *(x.dcache_dedicated[i]) << std::endl; |
|---|
| 14 | |
|---|
| 15 | output << *(x.cache_shared) << std::endl; |
|---|
| 16 | |
|---|
| 17 | return output; |
|---|
| 18 | } |
|---|
| 19 | |
|---|
| 20 | }; |
|---|
| 21 | }; |
|---|
Note: See
TracBrowser
for help on using the repository browser.