source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_queue/src/Parameters_msg_error.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: 1.3 KB
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Types.h"
9#include "Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_queue/include/Parameters.h"
10#include <sstream>
11
12namespace morpheo                    {
13namespace behavioural {
14namespace core {
15namespace multi_front_end {
16namespace front_end {
17namespace ifetch_unit {
18namespace ifetch_queue {
19
20
21#undef  FUNCTION
22#define FUNCTION "Ifetch_queue::msg_error"
23  Parameters_test Parameters::msg_error(void)
24  {
25    log_printf(FUNC,Ifetch_queue,FUNCTION,"Begin");
26
27    Parameters_test test ("Ifetch_queue");
28
29    if (_size_queue == 1)
30      test.warning("To best perfomance, size_queue must be > 1.");
31   
32//     if (not _have_port_queue_ptr)
33//       test.information("They have not port '..._QUEUE_PTR'.");
34
35//     if (not _have_port_instruction_ptr)
36//       test.information("They have not port '..._INST_IFETCH_PTR'.");
37
38//     if (not _have_port_branch_update_prediction_id)
39//       test.information("They have not port '..._BRANCH_UPDATE_PREDICTION_ID'.");
40
41    log_printf(FUNC,Ifetch_queue,FUNCTION,"End");
42
43    return test;
44  };
45
46}; // end namespace ifetch_queue
47}; // end namespace ifetch_unit
48}; // end namespace front_end
49}; // end namespace multi_front_end
50}; // end namespace core
51
52}; // end namespace behavioural
53}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.