source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Reservation_station/src/Parameters_msg_error.cpp @ 55

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

Ajout SystemC read_queue et reservation_station
Ajout port au bloc registerfile_monolithic (à ajouter également au bloc registerfile et registerfile_multi_banked)
Modif param : passage de pointeur (attention, tous les composants n'ont pas été tous modifier)

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_Read_unit/Read_unit/Reservation_station/include/Parameters.h"
9#include "Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Reservation_station/include/Types.h"
10#include <sstream>
11using namespace std;
12
13namespace morpheo                    {
14namespace behavioural {
15namespace core {
16namespace multi_execute_loop {
17namespace execute_loop {
18namespace multi_read_unit {
19namespace read_unit {
20namespace reservation_station {
21
22
23#undef  FUNCTION
24#define FUNCTION "Reservation_station::msg_error"
25  string Parameters::msg_error(void)
26  {
27    log_printf(FUNC,Reservation_station,FUNCTION,"Begin");
28
29    string msg = "";
30
31    if (_size_queue < 2)
32      {
33        msg += "  - The reservation_station must be have less a depth of 2";
34        msg += "    * size_queue                      : " + toString(_size_queue)    + "\n";
35      }
36
37    return msg;
38
39    log_printf(FUNC,Reservation_station,FUNCTION,"End");
40  };
41
42}; // end namespace reservation_station
43}; // end namespace read_unit
44}; // end namespace multi_read_unit
45}; // end namespace execute_loop
46}; // end namespace multi_execute_loop
47}; // end namespace core
48
49}; // end namespace behavioural
50}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.