source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Signal_link.cpp @ 78

Last change on this file since 78 was 78, checked in by rosiere, 16 years ago

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 size: 3.8 KB
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Signal.h"
9
10
11namespace morpheo              {
12namespace behavioural          {
13
14#undef  FUNCTION
15#define FUNCTION "Signal::link"
16  void Signal::link (Signal * signal_dest,
17                     bool     signal_dest_is_port)
18  {
19    // signal_dest_is_port == 1 when the signal dest is in a top level interface. (else, signal_dest is type "INTERNAL")
20   
21    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
22
23    Signal * signal_src = this;
24
25    // Test
26    if (signal_src ->_is_allocate == false)
27      throw (ERRORMORPHEO (FUNCTION,"Signal \""+_name+"\", can't map with signal \""+        get_name()+"\", because the first signal is not already allocate."));
28    if (signal_dest->_is_allocate == false)
29      throw (ERRORMORPHEO (FUNCTION,"Signal \""+_name+"\", can't map with signal \""+signal_dest->get_name()+"\", because the second signal is not already allocate."));
30
31    // List of all case
32    //
33    //            src         dest
34    // COMPONENT {IN } ----- {SIG} SIGNAL
35    // COMPONENT {OUT} ----- {SIG} SIGNAL
36    //
37    // COMPONENT {IN } ----- {IN } PORT
38    // COMPONENT {OUT} ----- {OUT} PORT
39
40    // list valid case
41    if (not (    signal_dest_is_port and (((signal_src->_direction == IN ) and (signal_dest->_direction == IN      )) or
42                                          ((signal_src->_direction == OUT) and (signal_dest->_direction == OUT     )))) and
43        not (not signal_dest_is_port and (((signal_src->_direction == IN ) and (signal_dest->_direction == INTERNAL)) or
44                                          ((signal_src->_direction == OUT) and (signal_dest->_direction == INTERNAL)))))
45      throw (ERRORMORPHEO (FUNCTION,"Signal \""+_name+"\" can't been linked with signal \""+signal_dest->get_name()+"\" : illegal direction ("+toString(signal_src->_direction)+" with "+toString(signal_dest->_direction)+")."));
46
47
48    // Multi consumer is authorized , no to multi producer!
49    bool source_have_multi_consumer      = (signal_src ->_connect_to_signal != NULL);
50//     bool destination_have_multi_producer = (signal_dest->_connect_from_signal != NULL) and (signal_dest_is_port == false);
51//     if (destination_have_multi_producer)
52// //       throw (ERRORMORPHEO (FUNCTION,"Signal \""+_name+"\" can't been linked with signal \""+signal_dest->get_name()+"\" : destination have multi producer."));
53//       log_printf(NONE,Behavioural,FUNCTION,"Signal \"%s\" can't been linked with signal \"%s\" : destination have multi producer.",_name.c_str(),signal_dest->get_name().c_str());
54
55    // update info source
56    signal_src ->_connect_to_signal       = signal_dest;
57    signal_src ->_is_map_as_component_src = true;
58
59    // update info destination
60    if (signal_dest_is_port == true)
61      signal_dest->_is_map_as_toplevel_dest = true; // because toplevel port can't be a source
62    else
63      // signal_dest is a internal signal
64      if (signal_src->_direction == OUT)
65        signal_dest->_is_map_as_component_dest = true;
66      else
67        signal_dest->_is_map_as_component_src  = true;
68   
69    // an internal signal and port can't be a source.
70    // also, to fill the connect_to_signal's field
71    if (signal_dest->_direction == INTERNAL)
72      if (signal_src->_direction == OUT)
73        signal_dest->_connect_from_signal = signal_src;
74      else
75        signal_dest->_connect_to_signal   = signal_src;
76    else
77      signal_dest->_connect_from_signal   = signal_src;
78   
79
80
81    // vhdl_testbench : to read an output producte by a internal component
82    // TODO : à vérifier !!!!!!!!!!!!
83    if ((signal_dest_is_port == true) and
84        (signal_src ->_direction == OUT))
85      signal_dest->_sc_signal_map = signal_src ->_sc_signal_map;
86
87    // A signal can be connect once
88    if (not source_have_multi_consumer)
89      connect (signal_dest);
90
91    log_printf(FUNC,Behavioural,FUNCTION,"End");
92  };
93
94}; // end namespace behavioural         
95}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.