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/processor/Morpheo/Behavioural/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Constants.h

    r116 r117  
    3939typedef enum
    4040  {
    41     TYPE_ALU                               = 0x0,       // 00000 - unit multiple
    42     TYPE_SHIFT                             = 0x1,       // 00001 - unit multiple
    43     TYPE_MOVE                              = 0x2,       // 00010 - unit multiple
    44     TYPE_TEST                              = 0x3,       // 00011 - unit multiple
    45     TYPE_MUL                               = 0x4,       // 00100 - unit multiple
    46     TYPE_DIV                               = 0x5,       // 00101 - unit multiple, type optionnal
    47     TYPE_EXTEND                            = 0x6,       // 00110 - unit multiple, type optionnal
    48     TYPE_FIND                              = 0x7,       // 00111 - unit multiple, type optionnal
    49     TYPE_SPECIAL                           = 0x8,       // 01000 - unit uniq
    50     TYPE_CUSTOM                            = 0x9,       // 01001 - unit uniq    , type optionnal
    51     TYPE_BRANCH                            = 0xa,       // 01010 - unit multiple
    52     TYPE_MEMORY                            = 0xb        // 01011 - unit uniq
     41    TYPE_ALU                               = 0x0,       // 0000 - unit multiple
     42    TYPE_SHIFT                             = 0x1,       // 0000 - unit multiple
     43    TYPE_MOVE                              = 0x2,       // 0000 - unit multiple
     44    TYPE_TEST                              = 0x3,       // 0000 - unit multiple
     45    TYPE_MUL                               = 0x4,       // 0000 - unit multiple
     46    TYPE_DIV                               = 0x5,       // 0000 - unit multiple, type optionnal
     47    TYPE_EXTEND                            = 0x6,       // 0000 - unit multiple, type optionnal
     48    TYPE_FIND                              = 0x7,       // 0000 - unit multiple, type optionnal
     49    TYPE_SPECIAL                           = 0x8,       // 0000 - unit uniq
     50    TYPE_CUSTOM                            = 0x9,       // 0000 - unit uniq    , type optionnal
     51    TYPE_BRANCH                            = 0xa,       // 0000 - unit multiple
     52    TYPE_MEMORY                            = 0xb,       // 0000 - unit uniq    , type exclusive
     53    TYPE_INVALID                           = 0xf        // 1111 - none
    5354  } type_t;
    5455
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Parameters.h

    r113 r117  
    113113
    114114  public   :              uint32_t   _size_store_queue_ptr                  ;
    115 //public   :              bool       _have_port_store_queue_ptr             ; // always true (min = 1)
     115  public   :              bool       _have_port_store_queue_ptr             ; // always true (min = 1)
    116116
    117117  public   :              uint32_t   _size_general_data                     ;
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Version.h

    r116 r117  
    1010#define MORPHEO_MAJOR_VERSION "0"
    1111#define MORPHEO_MINOR_VERSION "2"
    12 #define MORPHEO_REVISION      "116"
     12#define MORPHEO_REVISION      "117"
    1313#define MORPHEO_CODENAME      "Castor"
    1414
    15 #define MORPHEO_DATE_DAY      "30
    16 #define MORPHEO_DATE_MONTH    "04"
     15#define MORPHEO_DATE_DAY      "16
     16#define MORPHEO_DATE_MONTH    "05"
    1717#define MORPHEO_DATE_YEAR     "2009"
    1818
Note: See TracChangeset for help on using the changeset viewer.