source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/src/Parameters_msg_error.cpp @ 78

Last change on this file since 78 was 78, checked in by rosiere, 16 years ago

Add :

  • Execute_loop (must be test systemC)
  • Prediction
    • Direction : predifined scheme
    • Branch Target Buffer
  • iFetch_unit
    • ifetch_queue
    • pc management
  • Decod_unit
    • coming soon : support for custom operation
  • Rename_unit
    • RAT
    • Free_list
    • Dependence RAW check
    • Load store unit pointer
  • New Environnement (hierarchy_memory will remove in a next version)


Modif :

  • Manage Custom Operation
  • All component in execute_loop to use the new statistics management

Not Finish :

  • Return Address Stack
  • Environnement
File size: 1.2 KB
RevLine 
[2]1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include <stdint.h>
[15]9#include "Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/include/Parameters.h"
10#include "Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/include/Types.h"
[2]11#include <sstream>
12
13namespace morpheo                    {
14namespace behavioural                {
15namespace generic                    {
16namespace registerfile               {
[15]17namespace registerfile_monolithic    {
[2]18
[78]19  Parameters_test Parameters::msg_error(void)
[2]20  {
[78]21    Parameters_test test("RegisterFile_Monolithic");
[2]22
23    if ((8*sizeof(Tdata_t)) < _size_word)
[78]24      test.error("Type \"Tdata_t\" is too little to the size defined by size_word");
[2]25
26    if ((8*sizeof(Taddress_t)) < log2(_nb_word))
[78]27      test.error("type \"Taddress_t\" is too little to the size defined by nb_word");
[2]28
[55]29    if ((_nb_port_read + _nb_port_read_write) < 1)
[78]30      test.error("you need a read port");
[55]31
32    if ((_nb_port_write + _nb_port_read_write) < 1)
[78]33      test.error("you need a write port");
[2]34
[78]35    return test;
[2]36  };
37
[15]38}; // end namespace registerfile_monolithic
[2]39}; // end namespace registerfile
40}; // end namespace generic
41}; // end namespace behavioural         
42}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.