Ignore:
Timestamp:
Jan 15, 2009, 6:19:08 PM (15 years ago)
Author:
rosiere
Message:

1) Add soc test
2) fix bug (Pc management, Decod and execute, Update prediction ...)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/src/Prediction_unit_allocation.cpp

    r98 r101  
    127127      ALLOC1_INTERFACE("depth",OUT,SOUTH,"Interface with depth",_param->_nb_context);
    128128
    129       ALLOC1_SIGNAL_OUT(out_DEPTH_CURRENT      ,"current"      ,Tdepth_t,_param->_size_depth);
    130       ALLOC1_SIGNAL_OUT(out_DEPTH_MIN          ,"min"          ,Tdepth_t,_param->_size_depth);
    131       ALLOC1_SIGNAL_OUT(out_DEPTH_MAX          ,"max"          ,Tdepth_t,_param->_size_depth+1);
     129      ALLOC1_SIGNAL_OUT(out_DEPTH_VAL          ,"val"          ,Tcontrol_t,1);
     130      ALLOC1_SIGNAL_OUT(out_DEPTH_CURRENT      ,"current"      ,Tdepth_t  ,_param->_size_depth);
     131      ALLOC1_SIGNAL_OUT(out_DEPTH_MIN          ,"min"          ,Tdepth_t  ,_param->_size_depth);
     132      ALLOC1_SIGNAL_OUT(out_DEPTH_MAX          ,"max"          ,Tdepth_t  ,_param->_size_depth);
     133      ALLOC1_SIGNAL_OUT(out_DEPTH_FULL         ,"full"         ,Tcontrol_t,1);
    132134    }
    133135
     
    729731#endif
    730732         
     733          PORT_MAP(_component,src ,"out_DEPTH_"+toString(i)+"_VAL",
     734                              dest,"out_DEPTH_"+toString(i)+"_VAL");
     735          PORT_MAP(_component,src ,"out_DEPTH_"+toString(i)+"_FULL",
     736                              dest,"out_DEPTH_"+toString(i)+"_FULL");
    731737          if (_param->_have_port_depth)
    732738            {
     
    735741          PORT_MAP(_component,src ,"out_DEPTH_"+toString(i)+"_MIN",
    736742                              dest,"out_DEPTH_"+toString(i)+"_MIN");
    737             }
    738743          PORT_MAP(_component,src ,"out_DEPTH_"+toString(i)+"_MAX",
    739744                              dest,"out_DEPTH_"+toString(i)+"_MAX");
     745            }
    740746        }
    741747
Note: See TracChangeset for help on using the changeset viewer.