Last change
on this file since 79 was
78,
checked in by rosiere, 17 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:
313 bytes
|
Line | |
---|
1 | #ifndef ENVIRONNEMENT_QUEUE_PARAMETERS_H |
---|
2 | #define ENVIRONNEMENT_QUEUE_PARAMETERS_H |
---|
3 | |
---|
4 | #include <stdint.h> |
---|
5 | #include <iostream> |
---|
6 | |
---|
7 | namespace environnement { |
---|
8 | namespace queue { |
---|
9 | |
---|
10 | class Parameters |
---|
11 | { |
---|
12 | public : uint32_t _size; |
---|
13 | |
---|
14 | public : Parameters (uint32_t size) |
---|
15 | { |
---|
16 | _size = size; |
---|
17 | } |
---|
18 | }; |
---|
19 | |
---|
20 | }; |
---|
21 | }; |
---|
22 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.