Ignore:
Timestamp:
Mar 27, 2008, 11:04:49 AM (16 years ago)
Author:
rosiere
Message:

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:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Common/include/FromString.h

    r43 r78  
    1717namespace morpheo {
    1818 
    19   template<typename T> inline T   fromString             (const std::string& x)
     19  template<typename T> inline T        fromString             (const std::string& x)
    2020  {
    2121    return static_cast<T>(x.c_str());
    2222  }
    2323 
    24   template<>           inline int fromString<int>        (const std::string& x)
     24  template<>           inline uint32_t fromString<uint32_t>   (const std::string& x)
    2525  {
    26     return atoi(x.c_str());
     26    return static_cast<uint32_t>(atoi(x.c_str()));
     27  }
     28
     29  template<>           inline bool     fromString<bool>       (const std::string& x)
     30  {
     31    return atoi(x.c_str())!=0;
    2732  }
    2833 
Note: See TracChangeset for help on using the changeset viewer.