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

Last change on this file since 108 was 108, checked in by rosiere, 15 years ago

1) decod_queue : add reg_LAST_SLOT.
2) Commit : insert on event -> to pop decod_queue. Head test : add information (speculative or not)
3) Context State / UPT : Branch miss and Load miss in same cycle.
4) Free List : Bank is on LSB not MSB.
5) Platforms : move data

  • Property svn:keywords set to Id
File size: 1.2 KB
RevLine 
[55]1/*
2 * $Id: Parameters_msg_error.cpp 108 2009-02-12 11:55:06Z 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"
[78]23  Parameters_test Parameters::msg_error(void)
[55]24  {
25    log_printf(FUNC,Reservation_station,FUNCTION,"Begin");
26
[78]27    Parameters_test test ("Reservation_station");
[55]28
[69]29    if (_size_queue < _nb_inst_retire)
[108]30      test.error(toString(_("The reservation_station can't have more retire port (%d) than entry in the queue (%d).\n"),_nb_inst_retire,_size_queue));
[55]31
32    log_printf(FUNC,Reservation_station,FUNCTION,"End");
[78]33
34    return test;
[55]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.