source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_queue/src/Ifetch_queue_genMoore.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: 2.8 KB
Line 
1#ifdef SYSTEMC
2/*
3 * $Id: Ifetch_queue_genMoore.cpp 123 2009-06-08 20:43:30Z rosiere $
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_queue/include/Ifetch_queue.h"
10
11namespace morpheo                    {
12namespace behavioural {
13namespace core {
14namespace multi_front_end {
15namespace front_end {
16namespace ifetch_unit {
17namespace ifetch_queue {
18
19#undef  FUNCTION
20#define FUNCTION "Ifetch_queue::genMoore"
21  void Ifetch_queue::genMoore (void)
22  {
23    log_printf(FUNC,Ifetch_queue,FUNCTION,"Begin");
24
25    if (PORT_READ(in_NRESET))
26      {
27    // ==========================================================
28    // =====[ ADDRESS ]==========================================
29    // ==========================================================
30    {
31      internal_ADDRESS_ACK = (_queue[reg_PTR_WRITE]->_state == IFETCH_QUEUE_STATE_EMPTY);
32     
33      if (_param->_have_port_ifetch_queue_ptr)
34      PORT_WRITE(out_ADDRESS_IFETCH_QUEUE_ID, reg_PTR_WRITE);
35    }
36
37    // ==========================================================
38    // =====[ DECOD ]============================================
39    // ==========================================================
40    {
41      bool ack = (_queue[reg_PTR_READ]->_state == IFETCH_QUEUE_STATE_HAVE_RSP);
42     
43      for (uint32_t i=0; i<_param->_nb_instruction; i++)
44        {
45          internal_DECOD_VAL [i] = ack and _queue[reg_PTR_READ]->_instruction_enable [i];
46          PORT_WRITE(out_DECOD_INSTRUCTION [i],         _queue[reg_PTR_READ]->_instruction        [i]);
47        }
48     
49      PORT_WRITE(out_DECOD_ADDRESS                    , _queue[reg_PTR_READ]->_address                    );
50      if (_param->_have_port_inst_ifetch_ptr)
51      PORT_WRITE(out_DECOD_INST_IFETCH_PTR            , _queue[reg_PTR_READ]->_inst_ifetch_ptr            );
52      PORT_WRITE(out_DECOD_BRANCH_STATE               , _queue[reg_PTR_READ]->_branch_state               );
53      if (_param->_have_port_depth)
54      PORT_WRITE(out_DECOD_BRANCH_UPDATE_PREDICTION_ID, _queue[reg_PTR_READ]->_branch_update_prediction_id);
55      PORT_WRITE(out_DECOD_EXCEPTION                  , _queue[reg_PTR_READ]->_exception                  );
56    }
57      }
58    else
59      {
60        // Reset
61        internal_ADDRESS_ACK = 0;
62        for (uint32_t i=0; i<_param->_nb_instruction; i++)
63          internal_DECOD_VAL [i] = 0;
64       
65      }
66
67    // Write Output
68    PORT_WRITE(out_ADDRESS_ACK  , internal_ADDRESS_ACK);
69    for (uint32_t i=0; i<_param->_nb_instruction; i++)
70    PORT_WRITE(out_DECOD_VAL [i], internal_DECOD_VAL [i]);
71
72    log_printf(FUNC,Ifetch_queue,FUNCTION,"End");
73  };
74
75}; // end namespace ifetch_queue
76}; // end namespace ifetch_unit
77}; // end namespace front_end
78}; // end namespace multi_front_end
79}; // end namespace core
80}; // end namespace behavioural
81}; // end namespace morpheo             
82#endif
Note: See TracBrowser for help on using the repository browser.