source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Icache_Access/src/Icache_Access_genMealy_req.cpp @ 123

Last change on this file since 123 was 123, checked in by rosiere, 15 years ago

1) Fix performance
2) add auto generation to SPECINT2000
3) add reset in genMoore and genMealy

  • Property svn:keywords set to Id
File size: 3.5 KB
Line 
1#ifdef SYSTEMC
2/*
3 * $Id: Icache_Access_genMealy_req.cpp 123 2009-06-08 20:43:30Z rosiere $
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Icache_Access/include/Icache_Access.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace icache_access {
15
16
17#undef  FUNCTION
18#define FUNCTION "Icache_Access::genMealy_req"
19  void Icache_Access::genMealy_req (void)
20  {
21    log_begin(Icache_Access,FUNCTION);
22
23    Tcontrol_t icache_req_val [_param->_nb_icache_port];
24    for (uint32_t i=0; i<_param->_nb_icache_port; ++i)
25      icache_req_val [i] = 0;
26    Tcontrol_t context_req_ack [_param->_nb_front_end][_param->_max_nb_context];
27    for (uint32_t i=0; i<_param->_nb_front_end; ++i)
28      for (uint32_t j=0; j<_param->_nb_context[i]; ++j)
29        context_req_ack [i][j] = 0;
30
31    if (PORT_READ(in_NRESET))
32      {
33    for (uint32_t i=0; i<_param->_nb_icache_port; ++i)
34      {
35#ifdef STATISTICS
36        _internal_ICACHE_REQ_NB_ACCESS         [i] = 0;
37        _internal_ICACHE_REQ_NB_ACCESS_CONFLIT [i] = 0;
38#endif
39      }
40   
41    std::list<generic::priority::select_t> * select = _priority ->select();
42    for (std::list<generic::priority::select_t>::iterator it=select ->begin();
43         it!=select->end();
44         ++it)
45      {
46        uint32_t num_front_end = it->grp;
47        uint32_t num_context   = it->elt;
48
49        log_printf(TRACE,Dcache_Access,FUNCTION,"  * Context [%d][%d]",num_front_end, num_context);
50
51       
52        if (PORT_READ(in_CONTEXT_REQ_VAL [num_front_end][num_context]))
53          {
54            uint32_t   num_port       = _param->_table_routing[num_front_end][num_context];
55            Tcontrol_t icache_req_ack = PORT_READ(in_ICACHE_REQ_ACK [num_port]);
56
57            log_printf(TRACE,Dcache_Access,FUNCTION,"    * context have request");
58            log_printf(TRACE,Dcache_Access,FUNCTION,"    * num_port      : %d",num_port);
59            log_printf(TRACE,Dcache_Access,FUNCTION,"    * icache_req_val: %d",icache_req_val [num_port]);
60
61#ifdef STATISTICS
62            if (icache_req_ack)
63              {
64                _internal_ICACHE_REQ_NB_ACCESS [num_port] ++;
65                if (icache_req_val [num_port])
66                _internal_ICACHE_REQ_NB_ACCESS_CONFLIT [num_port] ++;
67              }
68#endif
69            if (not icache_req_val [num_port])
70              {
71                icache_req_val  [num_port] = 1;
72                context_req_ack [num_front_end][num_context] = icache_req_ack;
73
74                if (_param->_have_port_icache_thread_id)
75                  {
76                Tcontext_t num_thread = _param->_translate_context_to_thread[num_front_end][num_context];
77                log_printf(TRACE,Dcache_Access,FUNCTION,"    * num_thread  : %d",num_thread );
78
79                PORT_WRITE(out_ICACHE_REQ_THREAD_ID [num_port], num_thread);
80                  }
81//              if (_param->_have_port_icache_packet_id)
82                if (_param->_have_port_packet_id [num_front_end][num_context])
83                PORT_WRITE(out_ICACHE_REQ_PACKET_ID [num_port], PORT_READ(in_CONTEXT_REQ_PACKET_ID [num_front_end][num_context]));
84                PORT_WRITE(out_ICACHE_REQ_ADDRESS   [num_port], PORT_READ(in_CONTEXT_REQ_ADDRESS   [num_front_end][num_context]));
85                PORT_WRITE(out_ICACHE_REQ_TYPE      [num_port], PORT_READ(in_CONTEXT_REQ_TYPE      [num_front_end][num_context]));
86              }
87          }
88      }
89      }
90
91
92    for (uint32_t i=0; i<_param->_nb_icache_port; ++i)
93      PORT_WRITE(out_ICACHE_REQ_VAL [i], icache_req_val [i]);
94   
95    for (uint32_t i=0; i<_param->_nb_front_end; ++i)
96      for (uint32_t j=0; j<_param->_nb_context[i]; ++j)
97        PORT_WRITE(out_CONTEXT_REQ_ACK [i][j], context_req_ack [i][j]);
98
99    log_end(Icache_Access,FUNCTION);
100  };
101
102}; // end namespace icache_access
103}; // end namespace core
104
105}; // end namespace behavioural
106}; // end namespace morpheo             
107#endif
Note: See TracBrowser for help on using the repository browser.