source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Execute_unit/Execute_unit/Load_store_unit/src/Parameters_msg_error.cpp @ 59

Last change on this file since 59 was 59, checked in by rosiere, 17 years ago

Add Load store queue -> but not terminated and tested
Add article to sympa 2007 -> but no started

File size: 1.3 KB
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Execute_unit/Execute_unit/Load_store_unit/include/Parameters.h"
9#include <sstream>
10using namespace std;
11
12namespace morpheo                    {
13namespace behavioural {
14namespace core {
15namespace multi_execute_loop {
16namespace execute_loop {
17namespace multi_execute_unit {
18namespace execute_unit {
19namespace load_store_unit {
20
21
22#undef  FUNCTION
23#define FUNCTION "Load_store_unit::msg_error"
24  string Parameters::msg_error(void)
25  {
26    log_printf(FUNC,Load_store_unit,FUNCTION,"Begin");
27   
28    string msg = "";
29
30    switch (_speculative_load)
31      {
32      case SPECULATIVE_LOAD_COMMIT :
33        {
34          break;
35        }
36      case NO_SPECULATIVE_LOAD     :
37      case SPECULATIVE_LOAD_ACCESS :
38      case SPECULATIVE_LOAD_BYPASS :
39      default                      :
40        {
41          msg += "  - Speculative load scheme is not supported : " +toString(_speculative_load);
42          break;
43        }
44      }
45
46    return msg;
47
48    log_printf(FUNC,Load_store_unit,FUNCTION,"End");
49  };
50
51}; // end namespace load_store_unit
52}; // end namespace execute_unit
53}; // end namespace multi_execute_unit
54}; // end namespace execute_loop
55}; // end namespace multi_execute_loop
56}; // end namespace core
57
58}; // end namespace behavioural
59}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.