Changeset 73 for trunk/IPs/systemC/processor/Morpheo/Behavioural/include
- Timestamp:
- Jan 30, 2008, 12:08:19 PM (17 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Behavioural/include
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Debug_component.h
r72 r73 1 #ifndef D EBUG_COMPONENT_H2 #define D EBUG_COMPONENT_H1 #ifndef Debug_component_H 2 #define Debug_component_H 3 3 4 4 #define DEBUG_Behavioural false … … 21 21 #define DEBUG_Multi_Execute_unit false 22 22 #define DEBUG_Execute_unit false 23 #define DEBUG_Functionnal_unit true23 #define DEBUG_Functionnal_unit false 24 24 #define DEBUG_Load_store_unit false 25 25 #define DEBUG_Multi_Read_unit false … … 27 27 #define DEBUG_Read_queue false 28 28 #define DEBUG_Reservation_station false 29 #define DEBUG_Multi_Write_unit false 30 #define DEBUG_Write_unit false 31 #define DEBUG_Execute_queue true 32 #define DEBUG_Write_queue true 29 33 #define DEBUG_Register_unit false 30 34 #define DEBUG_Register_unit_Glue false -
trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Types.h
r72 r73 56 56 }; 57 57 58 inline Tcontext_t get_num_thread (Tcontext_t num_context_id , 59 uint32_t size_context_id, 60 Tcontext_t num_front_end_id , 61 uint32_t size_front_end_id, 62 Tcontext_t num_ooo_engine_id , 63 uint32_t size_ooo_engine_id) 64 { 65 return ((num_ooo_engine_id << (size_context_id + size_front_end_id)) | 66 (num_front_end_id << (size_context_id)) | 67 (num_context_id)); 68 } 69 70 58 71 59 72 }; // end namespace behavioural
Note: See TracChangeset
for help on using the changeset viewer.