- Timestamp:
- Feb 16, 2010, 1:35:48 PM (15 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Behavioural/Configuration/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/Configuration/src/Configuration_header.cpp
r112 r137 7 7 8 8 #include "Behavioural/Configuration/include/Configuration.h" 9 #include " Behavioural/include/Version.h"9 #include "Common/include/Environment.h" 10 10 11 11 namespace morpheo { … … 18 18 { 19 19 log_begin(Configuration,FUNCTION); 20 21 environment(); 20 22 21 23 std::string str = ""; … … 52 54 str += toString(MSG_INFORMATION)+"\n"; 53 55 str += toString(MSG_INFORMATION)+_(" * Multiple ORganization of a Processor with HEterogeneous and Open architecture\n"); 54 str += toString(MSG_INFORMATION)+_(" * Version : ")+ toString(MORPHEO_HEADER)+"\n";55 str += toString(MSG_INFORMATION)+_(" * Last change : ")+ toString(MORPHEO_DATE )+"\n";56 str += toString(MSG_INFORMATION)+_(" * Version : ")+MORPHEO_HEADER+"\n"; 57 str += toString(MSG_INFORMATION)+_(" * Last change : ")+MORPHEO_DATE +"\n"; 56 58 str += toString(MSG_INFORMATION)+_(" * E-mail support : mathieu.rosiere@lip6.fr\n" ); 57 59 str += toString(MSG_INFORMATION)+_(" * Original author(s) : Mathieu Rosière\n" ); -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Configuration/src/Instance_fromXMLLight.cpp
r109 r137 27 27 XMLLightVector<XML_t> vect = xml->getNodes(); 28 28 29 log_printf(TRACE,Configuration,FUNCTION," * id : %s",id.c_str()); 30 log_printf(TRACE,Configuration,FUNCTION," * size : %d",vect.size()); 31 29 32 for (uint32_t i=0; i<vect.size(); ++i) 30 33 { … … 33 36 std::string child_name = child->getName(); 34 37 35 //log_printf(TRACE,Configuration,FUNCTION," * child_name : %s",child_name.c_str());38 log_printf(TRACE,Configuration,FUNCTION," * child_name : %s",child_name.c_str()); 36 39 37 40 //-------------------------------------------- … … 47 50 attribute_t value = getAttribute(child,attributes,"value"); 48 51 49 //log_printf(TRACE,Configuration,FUNCTION," * parameter \"%s\" = %s",value_name.c_str(), value.c_str());52 log_printf(TRACE,Configuration,FUNCTION," * parameter \"%s\" = %s",value_name.c_str(), value.c_str()); 50 53 51 54 testAttributesEmpty(child,attributes); … … 75 78 attribute_t value_name = getAttribute(child,attributes,"name"); 76 79 77 //log_printf(TRACE,Configuration,FUNCTION," * link \"%s\"",value_name.c_str());80 log_printf(TRACE,Configuration,FUNCTION," * link \"%s\"",value_name.c_str()); 78 81 79 82 // Test, must have src or dest (or twice) … … 118 121 if (child_name == "timing") 119 122 { 120 //log_printf(TRACE,Configuration,FUNCTION," * timing");123 log_printf(TRACE,Configuration,FUNCTION," * timing"); 121 124 122 125 // Notation : … … 196 199 else 197 200 { 198 //log_printf(TRACE,Configuration,FUNCTION," * component");201 log_printf(TRACE,Configuration,FUNCTION," * component"); 199 202 200 203 testSingleton (child,false); … … 229 232 attribute_t value_id = value_ids.substr(index_min, index_max); 230 233 231 //log_printf(TRACE,Configuration,FUNCTION," * component \"%s\" - %s",value_type.c_str(), value_id.c_str());234 log_printf(TRACE,Configuration,FUNCTION," * component \"%s\" - %s",value_type.c_str(), value_id.c_str()); 232 235 233 236 index_begin = index_end; … … 238 241 value_id); 239 242 240 //log_printf(TRACE,Configuration,FUNCTION,"%s.%s",value_type.c_str(),value_id.c_str());241 //log_printf(TRACE,Configuration,FUNCTION," * %d",((*list_components)[value_type]).size());243 // log_printf(TRACE,Configuration,FUNCTION,"%s.%s",value_type.c_str(),value_id.c_str()); 244 // log_printf(TRACE,Configuration,FUNCTION," * %d",((*list_components)[value_type]).size()); 242 245 243 246 // Test if this id is previously used
Note: See TracChangeset
for help on using the changeset viewer.