Changeset 137 for trunk/IPs/systemC/processor/Morpheo/Behavioural/src
- Timestamp:
- Feb 16, 2010, 1:35:48 PM (15 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Behavioural/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Component_toXML.cpp
r81 r137 3 3 * $Id$ 4 4 * 5 * [ 5 * [ Description ] 6 6 * 7 7 */ 8 8 9 9 #include "Behavioural/include/Component.h" 10 #include " Behavioural/include/Version.h"10 #include "Common/include/Environment.h" 11 11 12 12 namespace morpheo { … … 19 19 { 20 20 log_printf(FUNC,Behavioural,FUNCTION,"Begin"); 21 22 environment (); 21 23 22 24 XML xml (_entity->get_name()); -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Debug_signal.cpp
r129 r137 8 8 9 9 #include "Behavioural/include/Debug_signal.h" 10 #include "Common/include/Message.h" 10 11 11 12 namespace morpheo { 12 13 namespace behavioural { 13 14 14 std::set<void *> _debug_signal; 15 debug_signal _debug_signal; 16 17 void debug_signal::add (void * signal, 18 std::string name) 19 { 20 _signal[signal] = name; 21 } 22 23 void debug_signal::write (void * signal) 24 { 25 std::map <void *,std::string>::iterator it=_signal.find(signal); 26 if (it != _signal.end()) 27 _signal_access.push_back(it->second); 28 29 // else 30 // msgError("At file %s, in line %d, invalid signal.\n",__FILE__,__LINE__); 31 } 32 33 void debug_signal::end_cycle (void) 34 { 35 _signal_access.clear(); 36 } 37 38 void debug_signal::print (void) 39 { 40 msg("List of access signal\n"); 41 for (std::list<std::string>::iterator it = _signal_access.begin(); 42 it != _signal_access.end(); 43 ++ it) 44 { 45 msg(" * %s\n",(*it).c_str()); 46 } 47 } 15 48 16 49 }; // end namespace behavioural -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_generate_file.cpp
r124 r137 1 1 #ifdef STATISTICS 2 2 #include "Behavioural/include/Stat.h" 3 #include "Behavioural/include/Version.h"4 3 #include "Common/include/Environment.h" 5 4 #include "Common/include/Systemc.h" … … 11 10 { 12 11 directory(); 12 environment(); 13 13 14 14 std::string body = print(1); -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl_get_header.cpp
r113 r137 9 9 10 10 #include "Behavioural/include/Vhdl.h" 11 #include " Behavioural/include/Version.h"11 #include "Common/include/Environment.h" 12 12 #include <time.h> 13 13 #include <sstream> … … 25 25 26 26 std::string text; 27 28 environment(); 27 29 28 30 time_t current_time; -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/XML_header.cpp
r98 r137 7 7 8 8 #include "Behavioural/include/XML.h" 9 #include " Behavioural/include/Version.h"9 #include "Common/include/Environment.h" 10 10 11 11 namespace morpheo { … … 17 17 { 18 18 log_printf(FUNC,Behavioural,FUNCTION,"Begin"); 19 20 environment (); 19 21 20 22 time_t current_time;
Note: See TracChangeset
for help on using the changeset viewer.