source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_queue/src/Parameters_msg_error.cpp @ 83

Last change on this file since 83 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1/*
2 * $Id: Parameters_msg_error.cpp 81 2008-04-15 18:40:01Z rosiere $
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.