Ignore:
Timestamp:
May 16, 2009, 4:42:39 PM (15 years ago)
Author:
rosiere
Message:

1) Platforms : add new organization for test
2) Load_Store_Unit : add array to count nb_check in store_queue
3) Issue_queue and Core_Glue : rewrite the issue network
4) Special_Register_Unit : add reset value to register CID
5) Softwares : add multicontext test
6) Softwares : add SPECINT
7) Softwares : add MiBench?
7) Read_queue : inhib access for r0
8) Change Core_Glue (network) - dont yet support priority and load balancing scheme

Location:
trunk/IPs/systemC/Environment/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/Environment/include/Environment.h

    r88 r117  
    22#define ENVIRONMENT_H
    33
     4#include "../Common/include/Debug.h"
    45#include "../Cache/include/Cache.h"
    56#include "../Data/include/Data.h"
     
    108109    {
    109110      _cout(ENVIRONMENT,"<itoa> : size : %d, ",size);
    110       _cout(ENVIRONMENT,"src : %.8x ",static_cast<uint32_t>(src));
    111       _cout(ENVIRONMENT,"dest : ");
     111      __cout(ENVIRONMENT,"src : %.8x ",static_cast<uint32_t>(src));
     112      __cout(ENVIRONMENT,"dest : ");
    112113
    113114      for (uint32_t i=0; i<size; i++)
     
    117118          src >>= 8; // shift byte
    118119
    119           _cout(ENVIRONMENT,"%.2x",0xff&static_cast<uint32_t>(dest [j]));
     120          __cout(ENVIRONMENT,"%.2x",0xff&static_cast<uint32_t>(dest [j]));
    120121
    121122        }
    122       _cout(ENVIRONMENT,".\n");
     123      __cout(ENVIRONMENT,".\n");
    123124    }
    124125   
     
    128129    {
    129130      dest = 0;
    130 
     131     
    131132      _cout(ENVIRONMENT,"<atoi> : size : %d, ",size);
    132       _cout(ENVIRONMENT,"src : ");
     133      __cout(ENVIRONMENT,"src : ");
    133134
    134135      for (uint32_t i=0; i<size; i++)
     
    138139          dest |= (static_cast<T>(src [j]) & 0xFF);
    139140
    140           _cout(ENVIRONMENT,"%.2x",0xff&static_cast<uint32_t>(src [j]));
     141          __cout(ENVIRONMENT,"%.2x",0xff&static_cast<uint32_t>(src [j]));
    141142        }
    142       _cout(ENVIRONMENT," dest : %.8x\n",static_cast<uint32_t>(dest));
     143      __cout(ENVIRONMENT," dest : %.8x\n",static_cast<uint32_t>(dest));
    143144    }
    144145  };
  • trunk/IPs/systemC/Environment/include/Environment_Parameters.h

    r88 r117  
    1414  class Parameters
    1515  {
     16  public : uint32_t                nb_thread               ;
    1617  public : uint32_t                nb_iport                ;
    1718  public : uint32_t                nb_dport                ;
     
    5354
    5455  public : Parameters (// General
     56                       uint32_t    nb_thread,
    5557                       uint32_t    nb_cache_dedicated,
    5658                       
     
    114116                       )
    115117    {
     118      this->nb_thread                = nb_thread;
    116119      this->nb_entity                = nb_cache_dedicated;
    117120
Note: See TracChangeset for help on using the changeset viewer.