Ignore:
Timestamp:
Feb 27, 2009, 7:37:40 PM (15 years ago)
Author:
rosiere
Message:

1) Decod_queue : multi implementation (one_fifo, multi_fifo)
2) Issue_queue : multi implementation (in_order, out_of_order)
3) Direction : Add Meta predictor
4) Context_State : re add Branch_complete, More priority to Load miss (is not speculative)
5) Return_Address_Stack : update reg_PREDICT pointer on decod miss prediction
6) UPT : Fix bug in multi event
7) Prediction_glue : in read_stack case, insert in UPT pc_next
8) Rename select : when rob have an event (need flush), read_r{a,b,c} and write_r{d,e} is set at 0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Commit_unit/src/Commit_unit_allocation.cpp

    r109 r111  
    310310#endif
    311311
     312#if defined(DEBUG) and defined(DEBUG_Commit_unit) and (DEBUG_Commit_unit == true)
     313    instruction_log_file = new std::ofstream [_param->_nb_thread];
     314    for (uint32_t i=0; i<_param->_nb_thread; ++i)
     315      if (_param->_have_thread [i])
     316        {
     317          std::string filename = "Instruction_flow-thread_" + toString(i) + ".log";
     318         
     319          instruction_log_file [i] .open(filename.c_str() ,std::ios::out | std::ios::trunc);
     320        }
     321#endif
     322
    312323    log_end(Commit_unit,FUNCTION);
    313324  };
Note: See TracChangeset for help on using the changeset viewer.