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 @ 88

Last change on this file since 88 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.1 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/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Reservation_station/include/Parameters.h"
9#include <sstream>
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace multi_execute_loop {
15namespace execute_loop {
16namespace multi_read_unit {
17namespace read_unit {
18namespace reservation_station {
19
20
21#undef  FUNCTION
22#define FUNCTION "Reservation_station::msg_error"
23  Parameters_test Parameters::msg_error(void)
24  {
25    log_printf(FUNC,Reservation_station,FUNCTION,"Begin");
26
27    Parameters_test test ("Reservation_station");
28
29    if (_size_queue < _nb_inst_retire)
30      test.error("The reservation_station can't have more retire port than entry in the queue.");
31
32    log_printf(FUNC,Reservation_station,FUNCTION,"End");
33
34    return test;
35  };
36
37}; // end namespace reservation_station
38}; // end namespace read_unit
39}; // end namespace multi_read_unit
40}; // end namespace execute_loop
41}; // end namespace multi_execute_loop
42}; // end namespace core
43
44}; // end namespace behavioural
45}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.