]> AND Private Git Repository - blast.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
finished testbench generation master
authorstephane Domas <stephane.domas@univ-fcomte.fr>
Tue, 15 May 2018 17:43:56 +0000 (19:43 +0200)
committerstephane Domas <stephane.domas@univ-fcomte.fr>
Tue, 15 May 2018 17:43:56 +0000 (19:43 +0200)
34 files changed:
AbstractBlock.cpp
AbstractBlock.h
AbstractInterface.cpp
AbstractInterface.h
BlockParameterGeneric.cpp
ConnectedInterface.h
DelayInputModifier.cpp
Dispatcher.cpp
FunctionalBlock.cpp
FunctionalBlock.h
FunctionalInterface.cpp
FunctionalInterface.h
Graph.cpp
GroupBlock.cpp
GroupInterface.cpp
GroupInterface.h
InterfacePropertiesDialog.cpp
MainWindow.cpp
MainWindow.h
ReferenceBlock.cpp
ReferenceBlock.h
ReferenceInterface.cpp
ReferenceInterface.h
blast.cpp
blast.creator.user
blastconfig.xml
lib/implementations/clkdomain_convert_1024x8_impl.xml
lib/implementations/impls.bmf
lib/implementations/read_csv_impl.xml
lib/references/clkdomain_convert_1024x8.xml
lib/references/generator-cst.xml
lib/references/generator-img.xml
lib/references/read_csv.xml
lib/references/references.bmf

index 218ea61840fa9352149afb8f3520b3a7213a85c7..de282720412988b118630585b1e20dd2013eeba4 100644 (file)
@@ -76,8 +76,10 @@ bool AbstractBlock::isStimuliBlock() {
  * and has at least one data output.\r
  * By the way, blocks that have no data input/output\r
  * (like clkrstgen) are not sources !\r
  * and has at least one data output.\r
  * By the way, blocks that have no data input/output\r
  * (like clkrstgen) are not sources !\r
+ * A source may also be a block of special type source.\r
  */\r
 bool AbstractBlock::isSourceBlock() {\r
  */\r
 bool AbstractBlock::isSourceBlock() {\r
+  if (specialType == Source) return true;\r
   if (getDataInputs().size() > 0) return false;\r
   if (getDataOutputs().size() == 0) return false;\r
   return true;\r
   if (getDataInputs().size() > 0) return false;\r
   if (getDataOutputs().size() == 0) return false;\r
   return true;\r
index efbd47471f19144261fc6968792129c9d1e6b4b3..f40af86773e020d59e417508004dbb63d7572319 100644 (file)
@@ -75,7 +75,7 @@ public:
   virtual bool isGroupBlock();\r
   virtual bool isStimuliBlock(); //! a stimuli block is outside the top group and simulates a peripheral (NB: this is also a source)\r
   virtual bool isTopGroupBlock();\r
   virtual bool isGroupBlock();\r
   virtual bool isStimuliBlock(); //! a stimuli block is outside the top group and simulates a peripheral (NB: this is also a source)\r
   virtual bool isTopGroupBlock();\r
-  bool isSourceBlock(); //! a source block has no data inputs and thus executes infinitely\r
+  bool isSourceBlock(); //! a source block is either a block that has no data inputs or that is of special type source. Thus it executes infinitely\r
   bool isSinkBlock(); //! a sink block has no data outputs and just collects what it receives (i.e. no compatibility check)\r
   bool isWBConfigurable();\r
 \r
   bool isSinkBlock(); //! a sink block has no data outputs and just collects what it receives (i.e. no compatibility check)\r
   bool isWBConfigurable();\r
 \r
index 3fdd87ad152912f9a850b4ea96799c8f9a2ff6db..83aa4c399e46373c5703ec518513bcb63b7d0bca 100644 (file)
@@ -14,8 +14,8 @@ AbstractInterface::AbstractInterface(AbstractBlock* _owner) {
   type = Boolean;
   endianess = LittleEndian;
   associatedIface = NULL;
   type = Boolean;
   endianess = LittleEndian;
   associatedIface = NULL;
-  clkIface = "";
-  clkIfaceType = 0;
+  clkIfaceName = "";
+  clkIfaceType = NoName;
 
 }
 
 
 }
 
@@ -29,8 +29,8 @@ AbstractInterface::AbstractInterface(AbstractBlock* _owner, const QString& _name
   type = typeFromString(_type);
   endianess = _endianess;
   associatedIface = NULL;
   type = typeFromString(_type);
   endianess = _endianess;
   associatedIface = NULL;
-  clkIface = "";
-  clkIfaceType = 0;
+  clkIfaceName = "";
+  clkIfaceType = NoName;
 }
 
 AbstractInterface::AbstractInterface(AbstractInterface* other) {
 }
 
 AbstractInterface::AbstractInterface(AbstractInterface* other) {
@@ -42,7 +42,7 @@ AbstractInterface::AbstractInterface(AbstractInterface* other) {
   purpose = other->purpose;
   endianess = LittleEndian;
   associatedIface = NULL;
   purpose = other->purpose;
   endianess = LittleEndian;
   associatedIface = NULL;
-  clkIface = other->clkIface;
+  clkIfaceName = other->clkIfaceName;
   clkIfaceType = other->clkIfaceType;
 }
 
   clkIfaceType = other->clkIfaceType;
 }
 
@@ -216,7 +216,7 @@ bool AbstractInterface::setAssociatedIface(AbstractInterface* iface) {
 
 AbstractInterface* AbstractInterface::getClockIface() {
   if (clkIfaceType == ClockName) {
 
 AbstractInterface* AbstractInterface::getClockIface() {
   if (clkIfaceType == ClockName) {
-    return owner->getIfaceFromName(clkIface);
+    return owner->getIfaceFromName(clkIfaceName);
   }
   return NULL;
 }
   }
   return NULL;
 }
@@ -227,7 +227,7 @@ double AbstractInterface::getClockFrequency() throw(Exception) {
   int idClock = -1;
 
   if (clkIfaceType == ParameterName) {
   int idClock = -1;
 
   if (clkIfaceType == ParameterName) {
-    BlockParameter* param = owner->getParameterFromName(clkIface);
+    BlockParameter* param = owner->getParameterFromName(clkIfaceName);
     if (!param->isUserParameter()) throw(Exception(IFACE_INVALID_CLKFREQ,this));
     bool ok;
     double freq = param->getDoubleValue(&ok);
     if (!param->isUserParameter()) throw(Exception(IFACE_INVALID_CLKFREQ,this));
     bool ok;
     double freq = param->getDoubleValue(&ok);
@@ -247,46 +247,6 @@ double AbstractInterface::getClockFrequency() throw(Exception) {
 }
 
 
 }
 
 
-bool AbstractInterface::setClockIface(QString name) {
-  /* 2 cases :
-   *  - this is a Data interface
-   *  - this is a Clock output (from a clkrstgen)
-   *
-   *   iface must correspond to an existing clock interface name
-   * or a user parameter prepend with a $.
-   */
-  if ((purpose == Data) || ((purpose == Clock) && (direction == Output))) {
-    if (name.at(0) == '$') {
-      name.remove(0,1);
-      QList<BlockParameter* > params = owner->getUserParameters();
-      foreach(BlockParameter* p, params) {
-        if (p->getName() == name) {
-          clkIface = name;
-          clkIfaceType = ParameterName;
-          return true;
-        }
-      }
-      // error case: cannot found the input clock
-      return false;
-    }
-    else {
-      QList<AbstractInterface*> clocks = owner->getInterfaces(Input, Clock);
-      foreach(AbstractInterface* iface, clocks) {
-        if (iface->getName() == name) {
-          clkIface = name;
-          clkIfaceType = ClockName;
-          return true;
-        }
-      }
-      // error case: cannot found the user paramter
-      return false;
-    }
-  }
-  clkIface = "";
-  clkIfaceType = NoName;
-  return true;
-}
-
 
 int AbstractInterface::getIntDirection(QString str) {
     if(str == "input") return Input;
 
 int AbstractInterface::getIntDirection(QString str) {
     if(str == "input") return Input;
@@ -351,7 +311,10 @@ QString AbstractInterface::toVHDL(IfaceVHDLContext context, int flags) throw(Exc
   //cout << "iface " << qPrintable(name) << " must be evaluated to vhdl :" << qPrintable(width) << " with type = " << qPrintable(getTypeString()) << endl;
 
   if (context == Instance) {
   //cout << "iface " << qPrintable(name) << " must be evaluated to vhdl :" << qPrintable(width) << " with type = " << qPrintable(getTypeString()) << endl;
 
   if (context == Instance) {
-    if (direction == Output) {
+    if (direction == Input) {
+      ret = owner->getName()+"_"+name;
+    }
+    else if (direction == Output) {
       ret = "from_"+owner->getName()+"_"+name;
     }
     else if (direction == InOut) {
       ret = "from_"+owner->getName()+"_"+name;
     }
     else if (direction == InOut) {
index 832fe483c19741693751dfea9bbce44aa64c8411..0ad387a0605de31d168704ebc2d00de65dfbc0ab 100644 (file)
@@ -30,7 +30,7 @@ public :
   enum IfaceDirection { AnyDirection = 0, Input = 1, Output = 2, InOut = 3 };  
   enum IfaceVHDLContext {AnyContext = 0, Entity = 1, Component = 2, Instance = 3, Signal = 4 };
   enum IfaceVHDLFlags { NoComma = 1 };
   enum IfaceDirection { AnyDirection = 0, Input = 1, Output = 2, InOut = 3 };  
   enum IfaceVHDLContext {AnyContext = 0, Entity = 1, Component = 2, Instance = 3, Signal = 4 };
   enum IfaceVHDLFlags { NoComma = 1 };
-  enum IfaceClockName { NoName = 0, ClockName, ParameterName };
+  enum IfaceClockName { NoName = 0, ClockName, ParameterName, InheritedName };
 
   static int getIntDirection(QString str);
   static int getIntPurpose(QString str);
 
   static int getIntDirection(QString str);
   static int getIntPurpose(QString str);
@@ -54,7 +54,7 @@ public :
   QString getDirectionString();  
   inline AbstractBlock *getOwner() { return owner;}
   inline AbstractInterface* getAssociatedIface() { return associatedIface; }
   QString getDirectionString();  
   inline AbstractBlock *getOwner() { return owner;}
   inline AbstractInterface* getAssociatedIface() { return associatedIface; }
-  inline QString getClockIfaceString() { return clkIface; }
+  inline QString getClockIfaceString() { return clkIfaceName; }
   inline int getClockIfaceType() { return clkIfaceType; }
   AbstractInterface* getClockIface();
   virtual int getClockDomain() throw(Exception) = 0; // determine on which clock domain is sync this interface
   inline int getClockIfaceType() { return clkIfaceType; }
   AbstractInterface* getClockIface();
   virtual int getClockDomain() throw(Exception) = 0; // determine on which clock domain is sync this interface
@@ -71,7 +71,8 @@ public :
   void setPurpose(int _purpose);
   void setDirection(int _direction);
   bool setAssociatedIface(AbstractInterface* iface);
   void setPurpose(int _purpose);
   void setDirection(int _direction);
   bool setAssociatedIface(AbstractInterface* iface);
-  bool setClockIface(QString name);
+  inline void setClockIfaceType(int type) { clkIfaceType = type; }
+  inline void setClockIfaceName(QString name) { clkIfaceName = name; }
   
   // testers
   virtual bool isReferenceInterface();
   
   // testers
   virtual bool isReferenceInterface();
@@ -112,7 +113,7 @@ protected:
    * Nevertheless, the designer has the possibility to connect the block taht owns this interface to another clkrstgen block.  Moreover,
    * some blocks may have several clocks, e.g. dual port RAMs, FIFOs.
    */
    * Nevertheless, the designer has the possibility to connect the block taht owns this interface to another clkrstgen block.  Moreover,
    * some blocks may have several clocks, e.g. dual port RAMs, FIFOs.
    */
-  QString clkIface;
+  QString clkIfaceName;
   int clkIfaceType; // 0 for not affected, 1 for clock input name, 2 for user param name
   
   
   int clkIfaceType; // 0 for not affected, 1 for clock input name, 2 for user param name
   
   
index 14b8c595f20d7ef5105504ed16949e2c5740d285..4ba6c8e69eb6fe2c62faaf86584506764f3d0fe1 100644 (file)
@@ -75,6 +75,20 @@ QString BlockParameterGeneric::toVHDL(int context, int flags) {
         ret = formatNoValue.arg(name).arg(typeStr);\r
       }\r
     }\r
         ret = formatNoValue.arg(name).arg(typeStr);\r
       }\r
     }\r
+    else if (type == String) {\r
+      typeStr = "string";\r
+      if (!userValue.isNull()) {\r
+        valueStr = "\""+userValue.toString()+"\"";\r
+        ret = formatValue.arg(name).arg(typeStr).arg(valueStr);\r
+      }\r
+      else if (!defaultValue.isNull()) {\r
+        valueStr = "\""+defaultValue.toString()+"\"";\r
+        ret = formatValue.arg(name).arg(typeStr).arg(valueStr);\r
+      }\r
+      else {\r
+        ret = formatNoValue.arg(name).arg(typeStr);\r
+      }\r
+    }\r
     else {\r
       typeStr = getTypeString();\r
       if (!userValue.isNull()) {\r
     else {\r
       typeStr = getTypeString();\r
       if (!userValue.isNull()) {\r
@@ -109,6 +123,9 @@ QString BlockParameterGeneric::toVHDL(int context, int flags) {
         if ((type == Boolean)||(type == Bit)) {\r
           ret = format.arg(name).arg("'"+userValue.toString()+"'");\r
         }\r
         if ((type == Boolean)||(type == Bit)) {\r
           ret = format.arg(name).arg("'"+userValue.toString()+"'");\r
         }\r
+        else if (type == String) {\r
+          ret = format.arg(name).arg("\""+userValue.toString()+"\"");\r
+        }\r
         else {\r
           ret = format.arg(name).arg(userValue.toString());\r
         }\r
         else {\r
           ret = format.arg(name).arg(userValue.toString());\r
         }\r
@@ -117,6 +134,9 @@ QString BlockParameterGeneric::toVHDL(int context, int flags) {
         if ((type == Boolean)||(type == Bit)) {\r
           ret = format.arg(name).arg("'"+defaultValue.toString()+"'");\r
         }\r
         if ((type == Boolean)||(type == Bit)) {\r
           ret = format.arg(name).arg("'"+defaultValue.toString()+"'");\r
         }\r
+        else if (type == String) {\r
+          ret = format.arg(name).arg("\""+defaultValue.toString()+"\"");\r
+        }\r
         else {\r
           ret = format.arg(name).arg(defaultValue.toString());\r
         }\r
         else {\r
           ret = format.arg(name).arg(defaultValue.toString());\r
         }\r
index c9e03e883164ebec5ebd9db4a879f428cffb841d..e3dbfd3d21b6dfe8c3c79447cf1407b990cd6708 100644 (file)
@@ -42,8 +42,8 @@ public :
   inline bool isConnectedTo(){return connectedTo.length() != 0;}
   inline bool isConnectedToMany(){return connectedTo.length()>=2;}
   inline bool isConnectedFrom(){return connectedFrom != NULL;}
   inline bool isConnectedTo(){return connectedTo.length() != 0;}
   inline bool isConnectedToMany(){return connectedTo.length()>=2;}
   inline bool isConnectedFrom(){return connectedFrom != NULL;}
-  virtual bool canConnectTo(AbstractInterface* iface) = 0;
-  virtual bool canConnectFrom(AbstractInterface* iface) = 0;
+  virtual bool canConnectTo(AbstractInterface* iface, bool testClock) = 0;
+  virtual bool canConnectFrom(AbstractInterface* iface, bool testClock) = 0;
 
   // others  
   void resetOutputPattern() { outputPattern = NULL; }
 
   // others  
   void resetOutputPattern() { outputPattern = NULL; }
index db89107a4614a9a9bad39bde1cac761a8c562329..242547c1e05ee9d854adfc772cb73b92253afa39 100644 (file)
@@ -34,11 +34,12 @@ QString DelayInputModifier::toVHDL(int context, int flags) throw(Exception) {
   dm2.setNum(delayLength-2);\r
   dm3.setNum(delayLength-3);\r
   QString ret="";\r
   dm2.setNum(delayLength-2);\r
   dm3.setNum(delayLength-3);\r
   QString ret="";\r
-  QString clkName = "clk";\r
-  QString resetName = "reset";\r
+  int idClock = toIface->getClockDomain();\r
+  QString clkName = "ext_clk_"+QString::number(idClock);\r
+  QString resetName = "ext_reset_"+QString::number(idClock);\r
   if (toIface->getOwner()->getParent()->isTopGroupBlock()) {\r
   if (toIface->getOwner()->getParent()->isTopGroupBlock()) {\r
-    clkName = "from_clkrstgen_clk";\r
-    resetName ="from_clkrstgen_reset";\r
+    clkName = "from_clkrstgen_"+QString::number(idClock)+"_clk";\r
+    resetName ="from_clkrstgen_"+QString::number(idClock)+"_reset";\r
   }\r
 \r
   if (context == Architecture) {\r
   }\r
 \r
   if (context == Architecture) {\r
index 266160b12b4eba2a89824487e44f911c00095eec..574243ef2a2287fec1e5cf03a0e559bbc50c2cc3 100644 (file)
@@ -100,7 +100,16 @@ void Dispatcher::setSceneCounter(Context context, int value) {
 }
 
 bool Dispatcher::createConnection(Context context, InterfaceItem *iface1, InterfaceItem *iface2, bool visible) {
 }
 
 bool Dispatcher::createConnection(Context context, InterfaceItem *iface1, InterfaceItem *iface2, bool visible) {
-    
+  static QString fctName = "Dispatcher::createConnection()";
+#ifdef DEBUG_FCTNAME
+  cout << "call to " << qPrintable(fctName) << endl;
+#endif
+
+  bool testClock = false;
+  if (context == Design) {
+    testClock = true;
+  }
+
   ConnectedInterface* ref1 = iface1->refInter;
   ConnectedInterface* ref2 = iface2->refInter;  
   // connect both interface
   ConnectedInterface* ref1 = iface1->refInter;
   ConnectedInterface* ref2 = iface2->refInter;  
   // connect both interface
@@ -108,30 +117,33 @@ bool Dispatcher::createConnection(Context context, InterfaceItem *iface1, Interf
   bool ok1 = false;
   bool ok2 = false;
 
   bool ok1 = false;
   bool ok2 = false;
 
+  cout << "trying to create a connection between " << qPrintable(ref1->getOwner()->getName()) << "/" << qPrintable(ref1->getName());
+  cout << " and " << qPrintable(ref2->getOwner()->getName()) << "/" << qPrintable(ref2->getName());
+
   // test the ref1->ref2 connection
   // test the ref1->ref2 connection
-  if ((ref1->canConnectTo(ref2)) && (ref2->canConnectFrom(ref1))) {
+  if ((ref1->canConnectTo(ref2,testClock)) && (ref2->canConnectFrom(ref1,testClock))) {
     ref1->connectTo(ref2);    
     ok1 = true;
   }
   // if the first one did not work, test ref2->ref1
     ref1->connectTo(ref2);    
     ok1 = true;
   }
   // if the first one did not work, test ref2->ref1
-  if ((ok1 == false) && (ref2->canConnectTo(ref1)) && (ref1->canConnectFrom(ref2))) {  
+  if ((ok1 == false) && (ref2->canConnectTo(ref1,testClock)) && (ref1->canConnectFrom(ref2,testClock))) {
     ref2->connectTo(ref1);    
     ok2 = true;
   }
   if ((ok1 == true) || (ok2 == true)) {    
 
     if (ok1) {
     ref2->connectTo(ref1);    
     ok2 = true;
   }
   if ((ok1 == true) || (ok2 == true)) {    
 
     if (ok1) {
-      cout << "trying to create a connection from " << qPrintable(ref1->getOwner()->getName()) << "/" << qPrintable(ref1->getName());
+      cout << " ... done with " << qPrintable(ref1->getOwner()->getName()) << "/" << qPrintable(ref1->getName());
       cout << " to " << qPrintable(ref2->getOwner()->getName()) << "/" << qPrintable(ref2->getName());
       iface1->getOwner()->getScene()->createConnectionItem(iface1,iface2, visible);
     }
     else {
       cout << " to " << qPrintable(ref2->getOwner()->getName()) << "/" << qPrintable(ref2->getName());
       iface1->getOwner()->getScene()->createConnectionItem(iface1,iface2, visible);
     }
     else {
-      cout << "trying to create a connection from " << qPrintable(ref2->getOwner()->getName()) << "/" << qPrintable(ref2->getName());
+      cout << "... done with " << qPrintable(ref2->getOwner()->getName()) << "/" << qPrintable(ref2->getName());
       cout << " to " << qPrintable(ref1->getOwner()->getName()) << "/" << qPrintable(ref1->getName());
       iface2->getOwner()->getScene()->createConnectionItem(iface2,iface1, visible);
     }
 
       cout << " to " << qPrintable(ref1->getOwner()->getName()) << "/" << qPrintable(ref1->getName());
       iface2->getOwner()->getScene()->createConnectionItem(iface2,iface1, visible);
     }
 
-    cout << " ... done." << endl;
+    cout << endl;
 
     unselectAllItems(context);
     params->unsaveModif = true;    
 
     unselectAllItems(context);
     params->unsaveModif = true;    
@@ -200,6 +212,12 @@ void Dispatcher::generateVHDL(Context context) throw(Exception) {
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " << qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
 
   QDir baseDir(params->projectPath);
   QDir srcDir(params->projectPath+"/src");
 
   QDir baseDir(params->projectPath);
   QDir srcDir(params->projectPath+"/src");
@@ -304,6 +322,12 @@ void Dispatcher::generateBlockVHDL(Context context, BoxItem *item){
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " << qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
 
   if (item->getRefBlock()->isFunctionalBlock()) {
     FunctionalBlock* block = AB_TO_FUN(item->getRefBlock());
 
   if (item->getRefBlock()->isFunctionalBlock()) {
     FunctionalBlock* block = AB_TO_FUN(item->getRefBlock());
@@ -321,6 +345,12 @@ void Dispatcher::renameFunctionalBlock(Context context, BoxItem *item){
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " << qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
     
   GroupWidget* win = item->getScene()->getGroupWidget();
   
     
   GroupWidget* win = item->getScene()->getGroupWidget();
   
@@ -360,6 +390,12 @@ void Dispatcher::renameGroupBlock(Context context, GroupItem *item){
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " << qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
   
   GroupWidget* win = item->getScene()->getGroupWidget();
   
   
   GroupWidget* win = item->getScene()->getGroupWidget();
   
@@ -406,6 +442,12 @@ void Dispatcher::renameStimuliItem(Context context, StimuliItem *item){
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " << qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
     
   GroupWidget* win = item->getScene()->getGroupWidget();
   
     
   GroupWidget* win = item->getScene()->getGroupWidget();
   
@@ -446,6 +488,11 @@ void Dispatcher::renameInterface(Context context, InterfaceItem *item) {
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " << qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
 
   GroupWidget* win = item->getOwner()->getScene()->getGroupWidget();
   
 
   GroupWidget* win = item->getOwner()->getScene()->getGroupWidget();
   
@@ -490,6 +537,12 @@ void Dispatcher::showPatterns(Context context, InterfaceItem *item) {
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " << qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
   QString msg = "";
   if (item->refInter->getDirection() == AbstractInterface::Input) {
     msg = "Input pattern of iface ";
   QString msg = "";
   if (item->refInter->getDirection() == AbstractInterface::Input) {
     msg = "Input pattern of iface ";
@@ -534,6 +587,12 @@ void Dispatcher::showModifier(Context context, InterfaceItem *item) {
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " << qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
   QString msg = "";
   ConnectedInterface* assoIface = AI_TO_CON(item->refInter->getAssociatedIface());
   AbstractInputModifier* mod = assoIface->getInputModifier();
   QString msg = "";
   ConnectedInterface* assoIface = AI_TO_CON(item->refInter->getAssociatedIface());
   AbstractInputModifier* mod = assoIface->getInputModifier();
@@ -551,10 +610,16 @@ void Dispatcher::showModifier(Context context, InterfaceItem *item) {
 }
 
 void Dispatcher::removeModifier(Context context, InterfaceItem *item) {
 }
 
 void Dispatcher::removeModifier(Context context, InterfaceItem *item) {
-  static QString fctName = "Dispatcher::showModifier()";
+  static QString fctName = "Dispatcher::removeModifier()";
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " << qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
 
   ConnectedInterface* assoIface = AI_TO_CON(item->refInter->getAssociatedIface());
   assoIface->clearInputModifier();
 
   ConnectedInterface* assoIface = AI_TO_CON(item->refInter->getAssociatedIface());
   assoIface->clearInputModifier();
@@ -566,6 +631,12 @@ void Dispatcher::duplicateBoxItem(Context context, BoxItem *item){
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " << qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
 
   GroupScene *scene = item->getScene();
   AbstractBlock* block = item->getRefBlock();  
 
   GroupScene *scene = item->getScene();
   AbstractBlock* block = item->getRefBlock();  
@@ -589,6 +660,12 @@ void Dispatcher::duplicateStimuliItem(Context context, StimuliItem *item) {
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " << qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
 
   GroupScene *scene = item->getScene();
   AbstractBlock* block = item->getRefBlock();  
 
   GroupScene *scene = item->getScene();
   AbstractBlock* block = item->getRefBlock();  
@@ -612,6 +689,12 @@ void Dispatcher::duplicateInterfaceItem(Context context, InterfaceItem *item) {
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " << qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
 
   AbstractInterface *refI = item->refInter;
   if (! refI->isFunctionalInterface()) return;
 
   AbstractInterface *refI = item->refInter;
   if (! refI->isFunctionalInterface()) return;
@@ -1106,8 +1189,11 @@ void Dispatcher::removeBoxItem(Context context, BoxItem *item) {
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
-
-  if (context != Design) return;
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " << qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
 
   /* a BoxItem (group of func) can be removed only if none of its
      interfaces is connected to a group interface that is itself
 
   /* a BoxItem (group of func) can be removed only if none of its
      interfaces is connected to a group interface that is itself
@@ -1182,6 +1268,11 @@ void Dispatcher::removeAllBlockConnections(Context context, AbstractBoxItem *ite
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " <<qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
 
   foreach(InterfaceItem* ifaceItem, item->getInterfaces()) {
     foreach(ConnectionItem* conn, ifaceItem->connections) {
 
   foreach(InterfaceItem* ifaceItem, item->getInterfaces()) {
     foreach(ConnectionItem* conn, ifaceItem->connections) {
@@ -1195,6 +1286,11 @@ void Dispatcher::removeStimuliItem(Context context, StimuliItem *item) {
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " <<qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
   
   QString msg = "Removing stimmuli ";
   
   
   QString msg = "Removing stimmuli ";
   
@@ -1218,6 +1314,12 @@ void Dispatcher::removeConnection(Context context, ConnectionItem *connItem) {
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " <<qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
   InterfaceItem* fromIfaceItem = connItem->getFromInterfaceItem();
   InterfaceItem* toIfaceItem = connItem->getToInterfaceItem();
 
   InterfaceItem* fromIfaceItem = connItem->getFromInterfaceItem();
   InterfaceItem* toIfaceItem = connItem->getToInterfaceItem();
 
@@ -1291,6 +1393,16 @@ void Dispatcher::removeConnection(Context context, ConnectionItem *connItem) {
 
 void Dispatcher::connectBoxItemClock(Context context, BoxItem *item, QString clkName, int idGen) throw(Exception) {
 
 
 void Dispatcher::connectBoxItemClock(Context context, BoxItem *item, QString clkName, int idGen) throw(Exception) {
 
+  static QString fctName = "Dispatcher::connectBoxItemClock()";
+#ifdef DEBUG_FCTNAME
+  cout << "call to " << qPrintable(fctName) << endl;
+#endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " <<qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
   InterfaceItem* fromIfaceItemClk = NULL;
   InterfaceItem* toIfaceItemClk = item->searchInterfaceItemByName(clkName);
   GroupItem* parentGroup = item->getScene()->getGroupItem();
   InterfaceItem* fromIfaceItemClk = NULL;
   InterfaceItem* toIfaceItemClk = item->searchInterfaceItemByName(clkName);
   GroupItem* parentGroup = item->getScene()->getGroupItem();
@@ -1324,6 +1436,17 @@ void Dispatcher::connectBoxItemClock(Context context, BoxItem *item, QString clk
 }
 
 void Dispatcher::connectBoxItemReset(Context context, BoxItem *item, QString rstName, int idGen) throw(Exception) {
 }
 
 void Dispatcher::connectBoxItemReset(Context context, BoxItem *item, QString rstName, int idGen) throw(Exception) {
+
+  static QString fctName = "Dispatcher::connectBoxItemReset()";
+#ifdef DEBUG_FCTNAME
+  cout << "call to " << qPrintable(fctName) << endl;
+#endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " <<qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
   InterfaceItem* fromIfaceItemRst = NULL;
   InterfaceItem* toIfaceItemRst = item->searchInterfaceItemByName(rstName);
   GroupItem* parentGroup = item->getScene()->getGroupItem();
   InterfaceItem* fromIfaceItemRst = NULL;
   InterfaceItem* toIfaceItemRst = item->searchInterfaceItemByName(rstName);
   GroupItem* parentGroup = item->getScene()->getGroupItem();
@@ -1357,6 +1480,17 @@ void Dispatcher::connectBoxItemReset(Context context, BoxItem *item, QString rst
 }
 
 void Dispatcher::connectStimuliItemClock(Context context, StimuliItem *item, QString clkName, int idGen) throw(Exception) {
 }
 
 void Dispatcher::connectStimuliItemClock(Context context, StimuliItem *item, QString clkName, int idGen) throw(Exception) {
+
+  static QString fctName = "Dispatcher::connectStimuliItemClock()";
+#ifdef DEBUG_FCTNAME
+  cout << "call to " << qPrintable(fctName) << endl;
+#endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " <<qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
   InterfaceItem* fromIfaceItemClk = NULL;
   InterfaceItem* toIfaceItemClk = item->searchInterfaceItemByName(clkName);
   BoxItem* clkrstItem = NULL;
   InterfaceItem* fromIfaceItemClk = NULL;
   InterfaceItem* toIfaceItemClk = item->searchInterfaceItemByName(clkName);
   BoxItem* clkrstItem = NULL;
@@ -1381,6 +1515,16 @@ void Dispatcher::connectStimuliItemClock(Context context, StimuliItem *item, QSt
 }
 
 void Dispatcher::connectStimuliItemReset(Context context, StimuliItem *item, QString rstName, int idGen) throw(Exception) {
 }
 
 void Dispatcher::connectStimuliItemReset(Context context, StimuliItem *item, QString rstName, int idGen) throw(Exception) {
+  static QString fctName = "Dispatcher::connectStimuliItemReset()";
+#ifdef DEBUG_FCTNAME
+  cout << "call to " << qPrintable(fctName) << endl;
+#endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " <<qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
   InterfaceItem* fromIfaceItemRst = NULL;
   InterfaceItem* toIfaceItemRst = item->searchInterfaceItemByName(rstName);
   BoxItem* clkrstItem = NULL;
   InterfaceItem* fromIfaceItemRst = NULL;
   InterfaceItem* toIfaceItemRst = item->searchInterfaceItemByName(rstName);
   BoxItem* clkrstItem = NULL;
@@ -1412,6 +1556,17 @@ void Dispatcher::showBlocksLibrary(){
 }
 
 void Dispatcher::showProperties(Context context, InterfaceItem *inter) {
 }
 
 void Dispatcher::showProperties(Context context, InterfaceItem *inter) {
+
+  static QString fctName = "Dispatcher::showProperties()";
+#ifdef DEBUG_FCTNAME
+  cout << "call to " << qPrintable(fctName) << endl;
+#endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " <<qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
   QDialog* dial = new InterfacePropertiesDialog(inter);
   dial->exec();
 }
   QDialog* dial = new InterfacePropertiesDialog(inter);
   dial->exec();
 }
@@ -1424,6 +1579,16 @@ void Dispatcher::showProperties(Context context, InterfaceItem *inter) {
 */
 void Dispatcher::connectInterToGroup(Context context, InterfaceItem *item){
 
 */
 void Dispatcher::connectInterToGroup(Context context, InterfaceItem *item){
 
+  static QString fctName = "Dispatcher::connectInterToGroup()";
+#ifdef DEBUG_FCTNAME
+  cout << "call to " << qPrintable(fctName) << endl;
+#endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " <<qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
+
   // getting the GroupBlock and GroupItem that are parent of the block that owns item
   ConnectedInterface *refInter = item->refInter;
   cout << "owner of iface = " << qPrintable(refInter->getOwner()->getName()) << endl;
   // getting the GroupBlock and GroupItem that are parent of the block that owns item
   ConnectedInterface *refInter = item->refInter;
   cout << "owner of iface = " << qPrintable(refInter->getOwner()->getName()) << endl;
@@ -1445,7 +1610,12 @@ void Dispatcher::connectInterToGroup(Context context, InterfaceItem *item){
   parentItem->addInterfaceItem(groupIfaceItem,true);
 
   // creating the connection, in graph and with an item
   parentItem->addInterfaceItem(groupIfaceItem,true);
 
   // creating the connection, in graph and with an item
-  createConnection(context, item, groupIfaceItem);
+  /* NOTE:
+     Since the group interface is for now unconnected, it is impossible to determine
+     its clock domain. Thus, the connection must be created without testing the clock domain
+     consistency. For that, we cheat by changing the context to Load because it implies no clock test.
+   */
+  createConnection(Load, item, groupIfaceItem);
 
   // if groupItem is not topGroup, must also add a new interface to the parent BlockItem
   BoxItem* parent2Item = parentItem->getParentItem();
 
   // if groupItem is not topGroup, must also add a new interface to the parent BlockItem
   BoxItem* parent2Item = parentItem->getParentItem();
@@ -1465,6 +1635,11 @@ void Dispatcher::removeFunctionalInterface(Context context, InterfaceItem *item)
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " <<qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
 
   /* first, remove all connections from item
      NB:  if there is a connection to a group interface, then this
 
   /* first, remove all connections from item
      NB:  if there is a connection to a group interface, then this
@@ -1488,6 +1663,11 @@ void Dispatcher::removeGroupInterface(Context context, InterfaceItem *item) {
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " <<qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
 
   /* NB: just remove all connections from/to this item, since when there are no more
      ones to a GroupItem, it is automatically deleted.
 
   /* NB: just remove all connections from/to this item, since when there are no more
      ones to a GroupItem, it is automatically deleted.
@@ -1566,6 +1746,11 @@ void Dispatcher::findGraphModifications(Context context, FunctionalBlock *block)
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
 #ifdef DEBUG_FCTNAME
   cout << "call to " << qPrintable(fctName) << endl;
 #endif
+  /* NB: only called in Design context */
+  if (context != Design) {
+    cout << "Abnormal case: call to " <<qPrintable(fctName) << " not in Design context" << endl;
+    return;
+  }
 
   block->computeAdmittanceDelays();
   // get the block item that is associated to block
 
   block->computeAdmittanceDelays();
   // get the block item that is associated to block
index 89250ec32f2f8c14aa677451d395b7ccf9443596..98e5e87a5d92f28f9a1556ccf1aaf911d5dea14a 100644 (file)
@@ -1422,12 +1422,19 @@ void FunctionalBlock::generateComments(QTextStream& out, QDomElement &elt, QStri
     QDomElement eltModif = nodeModif.toElement();\r
   }\r
   out << "-- Description   : " << endl;\r
     QDomElement eltModif = nodeModif.toElement();\r
   }\r
   out << "-- Description   : " << endl;\r
-  out << reference->getDescription() << endl;\r
+  QStringList lines = reference->getDescription().split("\n");\r
+  foreach(QString line, lines) {\r
+    out << "--   " << line << endl;\r
+  }\r
   out << "--" << endl;\r
   QDomElement eltNote = eltLog.nextSiblingElement("notes");\r
   QDomElement note = eltNote.firstChildElement();\r
   QString noteTxt = note.text();\r
   out << "--" << endl;\r
   QDomElement eltNote = eltLog.nextSiblingElement("notes");\r
   QDomElement note = eltNote.firstChildElement();\r
   QString noteTxt = note.text();\r
-  out << "--  Notes          :\n"<<noteTxt<<endl;\r
+  out << "--  Notes          :" << endl;\r
+  lines = noteTxt.split("\n");\r
+  foreach(QString line, lines) {\r
+    out << "--   " << line << endl;\r
+  }\r
   out << "--" << endl;\r
   for(int i = 0; i < 50; i++) {\r
     out << "--";\r
   out << "--" << endl;\r
   for(int i = 0; i < 50; i++) {\r
     out << "--";\r
index e3b816709af3f829a4abe27c4e558b8053999c44..93ac7d1de97079eef84ead29786dc4c89f716fe7 100644 (file)
@@ -46,7 +46,7 @@ public:
 \r
   // testers\r
   bool isFunctionalBlock();\r
 \r
   // testers\r
   bool isFunctionalBlock();\r
-  bool isStimuliBlock(); //! a stimuli block has no parent and has no data inputs\r
+  bool isStimuliBlock(); //! a stimuli block has no parent and is out of the top group\r
 \r
   // others\r
 \r
 \r
   // others\r
 \r
index 55f65ec48c076bb01ece044e5a35594c4e416245..3a225c7c90e4f2b43805ec08ccfd72eeeaef9a44 100644 (file)
@@ -21,7 +21,9 @@ FunctionalInterface::FunctionalInterface(AbstractBlock* _owner, ReferenceInterfa
   width = reference->getWidthString();\r
   direction = reference->getDirection();\r
   purpose = reference->getPurpose();  \r
   width = reference->getWidthString();\r
   direction = reference->getDirection();\r
   purpose = reference->getPurpose();  \r
-  connectedFrom = NULL;  \r
+  connectedFrom = NULL;\r
+  clkIfaceName = reference->getClockIfaceString();\r
+  clkIfaceType = reference->getClockIfaceType();\r
 }\r
 \r
 bool FunctionalInterface::isFunctionalInterface() {\r
 }\r
 \r
 bool FunctionalInterface::isFunctionalInterface() {\r
@@ -82,7 +84,12 @@ AbstractInterface *FunctionalInterface::clone() {
   return inter;\r
 }\r
 \r
   return inter;\r
 }\r
 \r
-bool FunctionalInterface::canConnectTo(AbstractInterface *iface) {\r
+bool FunctionalInterface::canConnectTo(AbstractInterface *iface, bool testClock) {\r
+  static QString fctName = "FunctionalInterface::canConnectTo()";\r
+#ifdef DEBUG_FCTNAME\r
+  cout << "call to " << qPrintable(fctName) << endl;\r
+#endif\r
+\r
 \r
   /* NOTE :\r
      necessary conditions :\r
 \r
   /* NOTE :\r
      necessary conditions :\r
@@ -99,14 +106,19 @@ bool FunctionalInterface::canConnectTo(AbstractInterface *iface) {
         2.2 - both are inout\r
      3 - this is owned by a source block and iface is owned by the top group\r
 \r
         2.2 - both are inout\r
      3 - this is owned by a source block and iface is owned by the top group\r
 \r
+     + if testClock is true, must test if both ifaces are in the same clock domain. Note that a group interface\r
+     has always\r
      special case : clk/reset from clkrstgen can connect to stimuli clk/reset\r
 \r
   */\r
      special case : clk/reset from clkrstgen can connect to stimuli clk/reset\r
 \r
   */\r
+  bool ok = false;\r
+\r
   if (direction == Input) return false;\r
   if (iface->isReferenceInterface()) return false;\r
   ConnectedInterface* connIface = AI_TO_CON(iface);\r
   if (connIface->getConnectedFrom() != NULL) return false;\r
   if (direction == Input) return false;\r
   if (iface->isReferenceInterface()) return false;\r
   ConnectedInterface* connIface = AI_TO_CON(iface);\r
   if (connIface->getConnectedFrom() != NULL) return false;\r
-  // special case\r
+\r
+  // special case, NB: never tests clocks\r
   if ((getOwner()->getName().startsWith("clkrstgen")) && (iface->getOwner()->isStimuliBlock())) {\r
     if ((direction == Output) && (iface->getDirection() == Input)) {\r
       if ((purpose == AbstractInterface::Clock) && (iface->getPurpose() == AbstractInterface::Clock)) return true;\r
   if ((getOwner()->getName().startsWith("clkrstgen")) && (iface->getOwner()->isStimuliBlock())) {\r
     if ((direction == Output) && (iface->getDirection() == Input)) {\r
       if ((purpose == AbstractInterface::Clock) && (iface->getPurpose() == AbstractInterface::Clock)) return true;\r
@@ -117,23 +129,48 @@ bool FunctionalInterface::canConnectTo(AbstractInterface *iface) {
   // first case: interface of blocks within the same group\r
   if (getOwner()->getParent() == iface->getOwner()->getParent()) {\r
 \r
   // first case: interface of blocks within the same group\r
   if (getOwner()->getParent() == iface->getOwner()->getParent()) {\r
 \r
-    if ((direction == Output) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) return true;\r
-    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;\r
+\r
+\r
+    if ((direction == Output) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) ok = true;\r
+    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) ok = true;\r
   }\r
   // second case: iface = interface of the group that contains owner of this\r
   else if (getOwner()->getParent() == iface->getOwner()) {\r
   }\r
   // second case: iface = interface of the group that contains owner of this\r
   else if (getOwner()->getParent() == iface->getOwner()) {\r
-    if ((direction == Output) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) return true;\r
-    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;\r
+    if ((direction == Output) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) ok = true;\r
+    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) ok = true;\r
   }\r
   else if ((getOwner()->isStimuliBlock()) && (iface->getOwner()->isTopGroupBlock())) {\r
   }\r
   else if ((getOwner()->isStimuliBlock()) && (iface->getOwner()->isTopGroupBlock())) {\r
-    if ((direction == Output) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) return true;\r
+    if ((direction == Output) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) ok = true;\r
   }\r
 \r
   }\r
 \r
+  if (ok) {\r
+    if (testClock) {\r
+      int dom1 = -1,dom2 = -2;\r
+      try {\r
+        dom1 = getClockDomain();\r
+        dom2 = iface->getClockDomain();\r
+      }\r
+      catch(Exception e) {\r
+        cerr << qPrintable(fctName) << " - " << qPrintable(e.getMessage()) << endl;\r
+        return false;\r
+      }\r
+      if (dom1 != dom2) {\r
+        cout << "cannot connect interface that are in different clock domains" << endl;\r
+        return false;\r
+      }\r
+    }\r
+    return true;\r
+  }\r
   return false;\r
 \r
 }\r
 \r
   return false;\r
 \r
 }\r
 \r
-bool FunctionalInterface::canConnectFrom(AbstractInterface *iface) {\r
+bool FunctionalInterface::canConnectFrom(AbstractInterface *iface, bool testClock) {\r
+\r
+  static QString fctName = "FunctionalInterface::canConnectFrom()";\r
+#ifdef DEBUG_FCTNAME\r
+  cout << "call to " << qPrintable(fctName) << endl;\r
+#endif\r
 \r
   /* NOTE :\r
      necessary conditions :\r
 \r
   /* NOTE :\r
      necessary conditions :\r
@@ -151,11 +188,13 @@ bool FunctionalInterface::canConnectFrom(AbstractInterface *iface) {
 \r
      special case : clk/reset of stimuli can connect from clk/reset of clkrstgen\r
   */\r
 \r
      special case : clk/reset of stimuli can connect from clk/reset of clkrstgen\r
   */\r
+  bool ok = false;\r
+\r
   if (direction == Output) return false;\r
   if (iface->isReferenceInterface()) return false;\r
   if (connectedFrom != NULL) return false;\r
 \r
   if (direction == Output) return false;\r
   if (iface->isReferenceInterface()) return false;\r
   if (connectedFrom != NULL) return false;\r
 \r
-  // special case\r
+  // special case, NB: never tests clock\r
   if ((iface->getOwner()->getName().startsWith("clkrstgen")) && (getOwner()->isStimuliBlock())) {\r
     if ((direction == Input) && (iface->getDirection() == Output)) {\r
       if ((purpose == AbstractInterface::Clock) && (iface->getPurpose() == AbstractInterface::Clock)) return true;\r
   if ((iface->getOwner()->getName().startsWith("clkrstgen")) && (getOwner()->isStimuliBlock())) {\r
     if ((direction == Input) && (iface->getDirection() == Output)) {\r
       if ((purpose == AbstractInterface::Clock) && (iface->getPurpose() == AbstractInterface::Clock)) return true;\r
@@ -163,14 +202,32 @@ bool FunctionalInterface::canConnectFrom(AbstractInterface *iface) {
     }\r
   }\r
 \r
     }\r
   }\r
 \r
-  if (getOwner()->getParent() == iface->getOwner()->getParent()) {\r
-\r
-    if ((direction == Input) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) return true;\r
-    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;\r
+  if (getOwner()->getParent() == iface->getOwner()->getParent()) {    \r
+    if ((direction == Input) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) ok = true;\r
+    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) ok = true;\r
   }\r
   else if (getOwner()->getParent() == iface->getOwner()) {\r
   }\r
   else if (getOwner()->getParent() == iface->getOwner()) {\r
-    if ((direction == Input) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) return true;\r
-    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;\r
+    if ((direction == Input) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) ok = true;\r
+    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) ok = true;\r
+  }\r
+\r
+  if (ok) {\r
+    if (testClock) {\r
+      int dom1 = -1,dom2 = -2;\r
+      try {\r
+        dom1 = getClockDomain();\r
+        dom2 = iface->getClockDomain();\r
+      }\r
+      catch(Exception e) {\r
+        cerr << qPrintable(e.getMessage()) << endl;\r
+        return false;\r
+      }\r
+      if (dom1 != dom2) {\r
+        cout << "cannot connect interfaces that are in different clock domains" << endl;\r
+        return false;\r
+      }\r
+    }\r
+    return true;\r
   }\r
 \r
   return false;\r
   }\r
 \r
   return false;\r
@@ -195,21 +252,27 @@ int FunctionalInterface::getClockDomain() throw(Exception) {
     if (connFrom == NULL) throw(Exception(IFACE_INVALID_CLKFREQ,this));\r
 \r
     if (connFrom->getOwner()->isFunctionalBlock()) {\r
     if (connFrom == NULL) throw(Exception(IFACE_INVALID_CLKFREQ,this));\r
 \r
     if (connFrom->getOwner()->isFunctionalBlock()) {\r
-      QString name = connFrom->getOwner()->getName();\r
-      cout << "conn from clkrstgen: searching for clkdomain in " << qPrintable(name) << endl;\r
-      name.remove(0,10);\r
-      bool ok;\r
-      idClock = name.toInt(&ok);\r
+      QString domName = connFrom->getOwner()->getName();\r
+      domName.remove(0,10);\r
+      cout << "conn from clkrstgen: searching for clkdomain in " << qPrintable(domName) << endl;\r
+\r
+      bool ok = true;\r
+      idClock = domName.toInt(&ok);\r
+      cout << "id clock = " << idClock << endl;\r
       if (!ok) throw(Exception(IFACE_INVALID_CLKFREQ,this));\r
     }\r
       if (!ok) throw(Exception(IFACE_INVALID_CLKFREQ,this));\r
     }\r
-    else {\r
-      QString name = connFrom->getName();\r
-      cout << "conn from group: searching for clkdomain in " << qPrintable(name) << endl;\r
-      name.remove(0,8);\r
-      bool ok;\r
-      idClock = name.toInt(&ok);\r
+    else if (connFrom->getOwner()->isGroupBlock()) {\r
+      QString domName = connFrom->getName();\r
+      domName.remove(0,8);\r
+      cout << "conn from group: searching for clkdomain in " << qPrintable(domName) << endl;\r
+\r
+      bool ok = true;\r
+      idClock = domName.toInt(&ok);\r
       if (!ok) throw(Exception(IFACE_INVALID_CLKFREQ,this));\r
     }\r
       if (!ok) throw(Exception(IFACE_INVALID_CLKFREQ,this));\r
     }\r
+    else {\r
+      cout << "abnormal case while searching for clkdomain" << endl;\r
+    }\r
   }\r
 \r
   return idClock;\r
   }\r
 \r
   return idClock;\r
index 3c7070358fe25ab8690017c01cf5d5bde3335a44..6d0731a6ea5a8de2f02183263fdb73f4a28e4ac4 100644 (file)
@@ -45,8 +45,8 @@ public :
 \r
   // testers\r
   bool isFunctionalInterface();\r
 \r
   // testers\r
   bool isFunctionalInterface();\r
-  bool canConnectTo(AbstractInterface* iface);\r
-  bool canConnectFrom(AbstractInterface* iface);\r
+  bool canConnectTo(AbstractInterface* iface, bool testClock);\r
+  bool canConnectFrom(AbstractInterface* iface, bool testClock);\r
 \r
   // others\r
 \r
 \r
   // others\r
 \r
index d0c11cc30907263705db2dc8521183dab7d9ea35..2b43baa1f8772c2b7e89f1b48ef9ad7ec05d6dc4 100644 (file)
--- a/Graph.cpp
+++ b/Graph.cpp
@@ -3,6 +3,8 @@
 #include "ReferenceBlock.h"
 #include "FunctionalBlock.h"
 #include "SpecialBlock.h"
 #include "ReferenceBlock.h"
 #include "FunctionalBlock.h"
 #include "SpecialBlock.h"
+#include "BlockParameter.h"
+#include "ConnectedInterface.h"
 
 Graph::Graph() {
   topGroup = NULL;
 
 Graph::Graph() {
   topGroup = NULL;
@@ -275,6 +277,7 @@ void Graph::generateTestbench(const QString &projectName, const QString &benchFi
   out << "use IEEE.numeric_std.all;" << endl;
   out << "entity " << projectName << "_tb is" << endl;
   out << "end entity " << projectName << "_tb;" << endl << endl;
   out << "use IEEE.numeric_std.all;" << endl;
   out << "entity " << projectName << "_tb is" << endl;
   out << "end entity " << projectName << "_tb;" << endl << endl;
+
   out << "architecture " << projectName << "_tb_1 of " << projectName << "_tb is" << endl << endl;
 
   out << "  component clock_gen" << endl;
   out << "architecture " << projectName << "_tb_1 of " << projectName << "_tb is" << endl << endl;
 
   out << "  component clock_gen" << endl;
@@ -287,7 +290,238 @@ void Graph::generateTestbench(const QString &projectName, const QString &benchFi
   out << "  end component;" << endl << endl;
 
   topGroup->generateComponent(out,false);
   out << "  end component;" << endl << endl;
 
   topGroup->generateComponent(out,false);
+  foreach(FunctionalBlock* block, stimulis) {
+    block->generateComponent(out,false);
+  }
+
+  out << "  ----------------------------" << endl;
+  out << "  --  SIGNALS" << endl;
+  out << "  ----------------------------" << endl << endl;
+
+  out << "  -- signals to reset stimulis" << endl;
+  foreach(FunctionalBlock* block, stimulis) {
+    out << "  signal reset_" << block->getName() << " : std_logic;" << endl;
+  }
+  out << endl;
+
+  out << "  -- signals for external clocks/reset" << endl;
+  for(int i=0;i<clocks.size();i++) {
+    out << "  signal ext_clk_" << i << " : std_logic;" << endl;
+    out << "  signal ext_reset_" << i << " : std_logic;" << endl;
+  }
+  out << endl;
+
+  // signals out of stimulis blocks
+  foreach(FunctionalBlock* block, stimulis) {
+    /* NB: normally, a stimuli has at least an input interface of type data
+      that is used to trigger the generation. It is necessarily called start.
+      It may have an additional input that is necessarily called stop.
+     */
+    try {
+      out << "  -- signals from input ports of " << block->getName() << endl;
+      QList<AbstractInterface*> listInputs = block->getInputs();
+      foreach(AbstractInterface* iface, listInputs) {
+        if (iface->getPurpose() == AbstractInterface::Data) {
+          out << "  signal " << iface->toVHDL(AbstractInterface::Signal,0) << endl;
+        }
+      }
+    }
+    catch(Exception e) {
+      throw(e);
+    }
+    try {
+      out << "  -- signals from output ports of " << block->getName() << endl;
+      QList<AbstractInterface*> listOutputs = block->getOutputs();
+      foreach(AbstractInterface* iface, listOutputs) {
+        if ((iface->getPurpose() == AbstractInterface::Data)||(iface->getPurpose() == AbstractInterface::Control)) {
+          out << "  signal " << iface->toVHDL(AbstractInterface::Signal,0) << endl;
+        }
+      }
+    }
+    catch(Exception e) {
+      throw(e);
+    }
+    out << endl;
+  }
+  out << endl;
+
+  // signals out of top group
+  try {
+    out << "  -- signals from output ports of " << topGroup->getName() << endl;
+    QList<AbstractInterface*> listOutputs = topGroup->getOutputs();
+    foreach(AbstractInterface* iface, listOutputs) {
+      if ((iface->getPurpose() == AbstractInterface::Data)||(iface->getPurpose() == AbstractInterface::Control)) {
+        out << "  signal " << iface->toVHDL(AbstractInterface::Signal,0) << endl;
+      }
+    }
+  }
+  catch(Exception e) {
+    throw(e);
+  }
+  out << endl;
+
+  // signals out of top group
+  try {
+    out << "  -- signals from inout ports of " << topGroup->getName() << endl;
+    QList<AbstractInterface*> listBidirs = topGroup->getBidirs();
+    foreach(AbstractInterface* iface, listBidirs) {
+      if (iface->getPurpose() == AbstractInterface::Data) {
+        out << "  signal " << iface->toVHDL(AbstractInterface::Signal,0) << endl;
+      }
+    }
+  }
+  catch(Exception e) {
+    throw(e);
+  }
+  out << endl;
+
+  out << "begin" << endl;
+  // for now assign all external resets to fixed 0 because of clkrstgen in top group
+  for(int i=0;i<clocks.size();i++) {
+    out << "  ext_reset_" << i << " <= '0';" << endl;
+  }
+  out << endl;
+  // generate clock instances
+  for(int i=0;i<clocks.size();i++) {
+    double halfPer = 500.0/clocks.at(i);
+    out << "  clock_" << i << " : clock_gen" << endl;
+    out << "    generic map (" << endl;
+    out << "      Tps => " << halfPer << " ns" << endl;
+    out << "      )" << endl;
+    out << "    port map (" << endl;
+    out << "      phase => ext_clk_" << i << endl;
+    out << "      );" << endl << endl;
+  }
+  // generate instances of stimulis
+  foreach(FunctionalBlock* block, stimulis) {
+    try {
+      out << "  " << block->getName() << "_1 : " << block->getName() << endl;
+
+      QList<BlockParameter*> listGenerics = block->getGenericParameters();
+      QList<AbstractInterface*> listInputs = block->getInputs();
+      QList<AbstractInterface*> listOutputs = block->getOutputs();
+
+      if (!listGenerics.isEmpty()) {
+        out << "    generic map (" << endl;
+        int i;
+        for(i=0;i<listGenerics.size()-1;i++) {
+          out << "      " << listGenerics.at(i)->toVHDL(BlockParameter::Instance, BlockParameter::NoComma) << "," << endl;
+        }
+        out << "      " << listGenerics.at(i)->toVHDL(BlockParameter::Instance,BlockParameter::NoComma) << endl;
+        out << "    )" << endl;
+      }
+
+      out << "    port map (" << endl;
+      QString portMap = "";
+
+      for(int i=0;i<listInputs.size();i++) {
+        ConnectedInterface* connIface = AI_TO_CON(listInputs.at(i));
+        if ( (connIface->getPurpose() == AbstractInterface::Data) || (connIface->getPurpose() == AbstractInterface::Control)) {
+          portMap += "      " + connIface->getName() + " => " + connIface->toVHDL(AbstractInterface::Instance, AbstractInterface::NoComma) + ",\n";
+        }
+        else if (connIface->getPurpose() == AbstractInterface::Clock) {
+          // get the "fake" clkrstgen from which it is connected
+          ConnectedInterface* fromIface = connIface->getConnectedFrom();
+          QString clkrstName = fromIface->getOwner()->getName();
+          clkrstName.remove(0,10);
+          portMap += "      " + connIface->getName() + " => ext_clk_" + clkrstName + ",\n";
+        }
+        else if (connIface->getPurpose() == AbstractInterface::Reset) {
+          portMap += "      " + connIface->getName() + " => reset_" + block->getName()+",\n";
+        }
+      }
+      for(int i=0;i<listOutputs.size();i++) {
+        ConnectedInterface* connIface = AI_TO_CON(listOutputs.at(i));
+        portMap += "      " + connIface->getName() + " => " + connIface->toVHDL(AbstractInterface::Instance, AbstractInterface::NoComma) + ",\n";
+      }
+      portMap.chop(2);
+      out << portMap << endl;
+
+
+      out << "    );" << endl;
+    }
+    catch(Exception e) {
+      throw(e);
+    }
+    out << endl;
+  }
+  out << endl;
+  // generate instance of top group
+  try {
+    out << "  " << topGroup->getName() << "_1 : " << topGroup->getName() << endl;
+
+    QList<BlockParameter*> listGenerics = topGroup->getGenericParameters();
+    QList<AbstractInterface*> listInputs = topGroup->getInputs();
+    QList<AbstractInterface*> listOutputs = topGroup->getOutputs();
+    QList<AbstractInterface*> listBidirs = topGroup->getBidirs();
+
+    if (!listGenerics.isEmpty()) {
+      out << "    generic map (" << endl;
+      int i;
+      for(i=0;i<listGenerics.size()-1;i++) {
+        out << "      " << listGenerics.at(i)->toVHDL(BlockParameter::Instance, BlockParameter::NoComma) << "," << endl;
+      }
+      out << "      " << listGenerics.at(i)->toVHDL(BlockParameter::Instance,BlockParameter::NoComma) << endl;
+      out << "    )" << endl;
+    }
+
+    out << "    port map (" << endl;
+    QString portMap = "";
+
+    for(int i=0;i<listInputs.size();i++) {
+      ConnectedInterface* connIface = AI_TO_CON(listInputs.at(i));
+      if ( (connIface->getPurpose() == AbstractInterface::Data) || (connIface->getPurpose() == AbstractInterface::Control)) {
+        ConnectedInterface* fromIface = connIface->getConnectedFrom();
+        portMap += "      " + connIface->getName() + " => " + fromIface->toVHDL(AbstractInterface::Instance, AbstractInterface::NoComma) + ",\n";
+      }
+      else if ( (connIface->getPurpose() == AbstractInterface::Clock) || (connIface->getPurpose() == AbstractInterface::Reset)) {
+        portMap += "      " + connIface->getName() + " => " + connIface->getName() + ",\n";
+      }
+    }
+    for(int i=0;i<listOutputs.size();i++) {
+      ConnectedInterface* connIface = AI_TO_CON(listOutputs.at(i));
+      portMap += "      " + connIface->getName() + " => " + connIface->toVHDL(AbstractInterface::Instance, AbstractInterface::NoComma) + ",\n";
+    }
+    for(int i=0;i<listBidirs.size();i++) {
+      ConnectedInterface* connIface = AI_TO_CON(listBidirs.at(i));
+      portMap += "      " + connIface->getName() + " => " + connIface->toVHDL(AbstractInterface::Instance, AbstractInterface::NoComma) + ",\n";
+    }
+    portMap.chop(2);
+    out << portMap << endl;
+
+
+    out << "    );" << endl;
+  }
+  catch(Exception e) {
+    throw(e);
+  }
+  out << endl;
+
+  // generate process for stimulis
+  foreach(FunctionalBlock* block, stimulis) {
+    // getting the start input
+    AbstractInterface* startIface = block->getIfaceFromName("start");
+    if (startIface == NULL) continue;
+    double per = 1000.0/startIface->getClockFrequency();
+    QString startName = block->getName()+"_start";
+    out << "  from_" << block->getName() << " : process" << endl;
+    out << "    variable pclk : time := " << per << " ns;" << endl;
+    out << "  begin" << endl;
+    out << "    reset_" << block->getName() << " <= '0';" << endl;
+    out << "    " << startName << " <= '0';" << endl;
+    out << "    wait for 2*pclk;" << endl;
+    out << "    reset_" << block->getName() << " <= '1';" << endl;
+    out << "    wait for 1*pclk;" << endl;
+    out << "    reset_" << block->getName() << " <= '0';" << endl;
+    out << "    wait for 5*pclk;" << endl;
+    out << "    " << startName << " <= '1';" << endl;
+    out << "    wait for pclk;" << endl;
+    out << "    " << startName << " <= '0';" << endl << endl;
+    out << "    wait for 100000 us;" << endl;
+    out << "  end process from_" << block->getName() << ";" << endl;
+  }
 
 
+  out << "end architecture " << projectName << "_tb_1;" << endl;
   vhdlBench.close();
 
 }
   vhdlBench.close();
 
 }
index d3ff0ed715487de28fae80acf7cfb52e6db27c48..d78a28e08e44dfb5a418fdc43c8576a150f19f73 100644 (file)
@@ -7,6 +7,7 @@
 #include <sstream>
 #include "Parameters.h"
 #include "DelayInputModifier.h"
 #include <sstream>
 #include "Parameters.h"
 #include "DelayInputModifier.h"
+#include "Graph.h"
 
 int GroupBlock::counter = 1;
 
 
 int GroupBlock::counter = 1;
 
@@ -484,16 +485,18 @@ void GroupBlock::generateArchitecture(QTextStream& out, QDomElement &elt) throw(
   out << "  --  SIGNALS" << endl;
   out << "  ----------------------------" << endl << endl;
 
   out << "  --  SIGNALS" << endl;
   out << "  ----------------------------" << endl << endl;
 
-  // signals to synchronize inputs
-  out << "  -- signals to synchronize inputs" << endl;
-  foreach(AbstractInterface* iface, getInputs()) {
-    if ((iface->getPurpose() == AbstractInterface::Data)||(iface->getPurpose() == AbstractInterface::Control)) {
-      QString name = iface->toVHDL(AbstractInterface::Signal,0);
-      name.replace(" : ","_sync : ");
-      out << "  signal " << name<< endl;
+  // if this is top group, signals to synchronize inputs
+  if (topGroup) {
+    out << "  -- signals to synchronize inputs" << endl;
+    foreach(AbstractInterface* iface, getInputs()) {
+      if ((iface->getPurpose() == AbstractInterface::Data)||(iface->getPurpose() == AbstractInterface::Control)) {
+        QString name = iface->toVHDL(AbstractInterface::Signal,0);
+        name.replace(" : ","_sync : ");
+        out << "  signal " << name<< endl;
+      }
     }
     }
+    out << endl;
   }
   }
-  out << endl;
 
   // "normal" signals
   foreach(AbstractBlock* block, blocks) {
 
   // "normal" signals
   foreach(AbstractBlock* block, blocks) {
@@ -504,7 +507,7 @@ void GroupBlock::generateArchitecture(QTextStream& out, QDomElement &elt) throw(
         if ((iface->getPurpose() == AbstractInterface::Data)||(iface->getPurpose() == AbstractInterface::Control)) {
           out << "  signal " << iface->toVHDL(AbstractInterface::Signal,0) << endl;
         }
         if ((iface->getPurpose() == AbstractInterface::Data)||(iface->getPurpose() == AbstractInterface::Control)) {
           out << "  signal " << iface->toVHDL(AbstractInterface::Signal,0) << endl;
         }
-        else if (block->getName() == "clkrstgen") {
+        else if (block->getName().startsWith("clkrstgen")) {
           if ((iface->getPurpose() == AbstractInterface::Clock)||(iface->getPurpose() == AbstractInterface::Reset)) {
             out << "  signal " << iface->toVHDL(AbstractInterface::Signal,0) << endl;
           }
           if ((iface->getPurpose() == AbstractInterface::Clock)||(iface->getPurpose() == AbstractInterface::Reset)) {
             out << "  signal " << iface->toVHDL(AbstractInterface::Signal,0) << endl;
           }
@@ -668,36 +671,54 @@ void GroupBlock::generateArchitecture(QTextStream& out, QDomElement &elt) throw(
   }
 
   if (topGroup) {
   }
 
   if (topGroup) {
-    // generate input sync process
+    // generate input sync process for each clock domain
     out << "  -- process to synchronize inputs of top group" << endl;
     out << "  -- process to synchronize inputs of top group" << endl;
-    out << "sync_inputs : process(from_clkrstgen_clk,from_clkrstgen_reset)" << endl;
-    out << "  begin" << endl;
-    out << "    if from_clkrstgen_reset = '1' then" << endl;
-    foreach(AbstractInterface* iface, getInputs()) {
-      if ((iface->getPurpose() == AbstractInterface::Data)||(iface->getPurpose() == AbstractInterface::Control)) {
-        if (iface->getWidth() == 0) {
-          out << "      " << name << "_" << iface->getName() << "_sync <= '0';" << endl;
-        }
-        else {
-          out << "      " << name << "_" << iface->getName() << "_sync <= (others => '0');" << endl;
+    for(int i=0;i<graph->getClocks().size();i++) {
+      // check if there are some inputs that must be sync with clock domain i
+      bool mustSync = false;
+      foreach(AbstractInterface* iface, getInputs()) {
+        if ((iface->getPurpose() == AbstractInterface::Data)||(iface->getPurpose() == AbstractInterface::Control)) {
+          if (iface->getClockDomain() == i) {
+            mustSync = true;
+            break;
+          }
         }
       }
         }
       }
-    }
-    out << "    elsif rising_edge(from_clkrstgen_clk) then" << endl;
-    foreach(AbstractInterface* iface, getInputs()) {
-      if ((iface->getPurpose() == AbstractInterface::Data)||(iface->getPurpose() == AbstractInterface::Control)) {
-        if (iface->getWidth() == 0) {
-          out << "      " << name << "_" << iface->getName() << "_sync <= " << iface->getName() << ";" << endl;
+      if (mustSync) {
+        out << "sync_inputs_" << i << " : process(from_clkrstgen_" << i << "_clk,from_clkrstgen_" << i << "_reset)" << endl;
+        out << "  begin" << endl;
+        out << "    if from_clkrstgen_" << i << "_reset = '1' then" << endl;
+        foreach(AbstractInterface* iface, getInputs()) {
+          if ((iface->getPurpose() == AbstractInterface::Data)||(iface->getPurpose() == AbstractInterface::Control)) {
+            if (iface->getClockDomain() == i) {
+              if (iface->getWidth() == 0) {
+                out << "      " << name << "_" << iface->getName() << "_sync <= '0';" << endl;
+              }
+              else {
+                out << "      " << name << "_" << iface->getName() << "_sync <= (others => '0');" << endl;
+              }
+            }
+          }
         }
         }
-        else {
-          out << "      " << name << "_" << iface->getName() << "_sync <= " << iface->getName() << ";" << endl;
+        out << "    elsif rising_edge(from_clkrstgen_" << i << "_clk) then" << endl;
+        foreach(AbstractInterface* iface, getInputs()) {
+          if ((iface->getPurpose() == AbstractInterface::Data)||(iface->getPurpose() == AbstractInterface::Control)) {
+            if (iface->getClockDomain() == i) {
+              if (iface->getWidth() == 0) {
+                out << "      " << name << "_" << iface->getName() << "_sync <= " << iface->getName() << ";" << endl;
+              }
+              else {
+                out << "      " << name << "_" << iface->getName() << "_sync <= " << iface->getName() << ";" << endl;
+              }
+            }
+          }
         }
         }
+        out << "    end if;" << endl;
+        out << "  end process sync_inputs_" << i << ";" << endl;
+
+        out << endl;
       }
     }
       }
     }
-    out << "    end if;" << endl;
-    out << "  end process sync_inputs;" << endl;
-
-    out << endl;
   }
 
   out << "end architecture rtl;" << endl;
   }
 
   out << "end architecture rtl;" << endl;
index bfeb1ff2373a4fe113854772826892dd9f0187d3..db80b911aa488d5e4ba1a01dab642fd7a5831291 100644 (file)
@@ -10,6 +10,7 @@ GroupInterface::GroupInterface(AbstractBlock* _owner, const QString& _name, int
   if ((purpose == Clock) || (purpose == Reset)) {
     type = Boolean;
   }
   if ((purpose == Clock) || (purpose == Reset)) {
     type = Boolean;
   }
+  clkIfaceType = InheritedName;
 }
 
 bool GroupInterface::isGroupInterface() {
 }
 
 bool GroupInterface::isGroupInterface() {
@@ -44,7 +45,7 @@ int GroupInterface::getWidth() {
   return w;
 }
 
   return w;
 }
 
-bool GroupInterface::canConnectTo(AbstractInterface *iface) {
+bool GroupInterface::canConnectTo(AbstractInterface *iface, bool testClock) {
 
   /* NOTE :
      necessary conditions :
 
   /* NOTE :
      necessary conditions :
@@ -62,32 +63,53 @@ bool GroupInterface::canConnectTo(AbstractInterface *iface) {
         2.1 - this is an output, iface is an output of the group
         2.2 - both are inout
      
         2.1 - this is an output, iface is an output of the group
         2.2 - both are inout
      
-
+      NB: testClock is useless since a group interface has always a clkIfaceType inherited.
+      Thus, it is always possible
 
   */
 
   */
+  bool ok = false;
+
   if (iface->isReferenceInterface()) return false;
   ConnectedInterface* connIface = AI_TO_CON(iface);
   if (connIface->getConnectedFrom() != NULL) return false;
 
   if (this->getOwner() == iface->getOwner()->getParent()) {
   if (iface->isReferenceInterface()) return false;
   ConnectedInterface* connIface = AI_TO_CON(iface);
   if (connIface->getConnectedFrom() != NULL) return false;
 
   if (this->getOwner() == iface->getOwner()->getParent()) {
-    if ((direction == Input) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) return true;
-    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
+    if ((direction == Input) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) ok = true;
+    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) ok = true;
 
   }
   else if (this->getOwner()->getParent() == iface->getOwner()->getParent()) {
 
   }
   else if (this->getOwner()->getParent() == iface->getOwner()->getParent()) {
-    if ((direction == Output) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) return true;
-    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
+    if ((direction == Output) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) ok = true;
+    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) ok = true;
   }
   else if (this->getOwner()->getParent() == iface->getOwner()) {
   }
   else if (this->getOwner()->getParent() == iface->getOwner()) {
-    if ((direction == Output) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) return true;
-    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
+    if ((direction == Output) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) ok = true;
+    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) ok = true;
   }
   
   }
   
+  if (ok) {
+    if (testClock) {
+      int dom1 = -1,dom2 = -2;
+      try {
+        dom1 = getClockDomain();
+        dom2 = iface->getClockDomain();
+      }
+      catch(Exception e) {
+        cerr << qPrintable(e.getMessage()) << endl;
+        return false;
+      }
+      if (dom1 != dom2) {
+        cout << "cannot connect interface that are in different clock domains" << endl;
+        return false;
+      }
+    }
+    return true;
+  }
 
   return false;
 }
 
 
   return false;
 }
 
-bool GroupInterface::canConnectFrom(AbstractInterface *iface) {
+bool GroupInterface::canConnectFrom(AbstractInterface *iface, bool testClock) {
 
   /* NOTE :
      necessary conditions :
 
   /* NOTE :
      necessary conditions :
@@ -106,24 +128,45 @@ bool GroupInterface::canConnectFrom(AbstractInterface *iface) {
         2.2 - both are inout
      4 - this is owned by top group and iface is an output of a source block           
   */
         2.2 - both are inout
      4 - this is owned by top group and iface is an output of a source block           
   */
+  bool ok = false;
+
   if (iface->isReferenceInterface()) return false;
   if (getConnectedFrom() != NULL) return false;
 
   if (this->getOwner() == iface->getOwner()->getParent()) {
   if (iface->isReferenceInterface()) return false;
   if (getConnectedFrom() != NULL) return false;
 
   if (this->getOwner() == iface->getOwner()->getParent()) {
-    if ((direction == Output) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) return true;
-    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
+    if ((direction == Output) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) ok = true;
+    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) ok = true;
 
   }
   else if (this->getOwner()->getParent() == iface->getOwner()->getParent()) {
 
   }
   else if (this->getOwner()->getParent() == iface->getOwner()->getParent()) {
-    if ((direction == Input) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) return true;
-    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
+    if ((direction == Input) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) ok = true;
+    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) ok = true;
   }
   else if (this->getOwner()->getParent() == iface->getOwner()) {
   }
   else if (this->getOwner()->getParent() == iface->getOwner()) {
-    if ((direction == Input) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) return true;
-    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
+    if ((direction == Input) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) ok = true;
+    if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) ok = true;
   }
   else if ((getOwner()->isTopGroupBlock()) && (iface->getOwner()->isStimuliBlock())) {
   }
   else if ((getOwner()->isTopGroupBlock()) && (iface->getOwner()->isStimuliBlock())) {
-    if ((direction == Input) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) return true;
+    if ((direction == Input) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) ok = true;
+  }
+
+  if (ok) {
+    if (testClock) {
+      int dom1 = -1,dom2 = -2;
+      try {
+        dom1 = getClockDomain();
+        dom2 = iface->getClockDomain();
+      }
+      catch(Exception e) {
+        cerr << qPrintable(e.getMessage()) << endl;
+        return false;
+      }
+      if (dom1 != dom2) {
+        cout << "cannot connect interface that are in different clock domains" << endl;
+        return false;
+      }
+    }
+    return true;
   }
 
   return false;
   }
 
   return false;
@@ -131,29 +174,60 @@ bool GroupInterface::canConnectFrom(AbstractInterface *iface) {
 
 int GroupInterface::getClockDomain() throw(Exception) {
 
 
 int GroupInterface::getClockDomain() throw(Exception) {
 
+  /* For clk/rst interfaces, the clock domain can be deduced
+     from the interface name.
+     Otherwise, we can search backward/forward for a functional
+     interface. Since a group interface cannot exist if it is not
+     connected to and/or from a functional interface (either directly
+     or through a sequence of subgroups) there is at least such a functional
+     interface.
+   */
   int idClock = -1;
   int idClock = -1;
-
-  GroupInterface* iface = NULL;
-  if (clkIfaceType == ClockName) {
-    iface = AI_TO_GRP(getClockIface());
-  }
-  else if ((direction == Input) && (purpose == Clock)) {
-    iface = this;
-  }
-
-  if ( iface != NULL) {
-
-    QString name = iface->getName();
-    name.remove(0,8);
+  if ((purpose == Clock) || (purpose == Reset)) {
+    QString domName = name;
+    domName.remove(0,8);
     bool ok;
     bool ok;
-    idClock = name.toInt(&ok);
+    idClock = domName.toInt(&ok);
     if (!ok) throw(Exception(IFACE_INVALID_CLKFREQ,this));
     if (!ok) throw(Exception(IFACE_INVALID_CLKFREQ,this));
-
+  }
+  else {
+    // start by searching backward
+    ConnectedInterface* connFrom = connectedFrom;
+    while ((connFrom != NULL) && (connFrom->isGroupInterface())) {
+      connFrom = connFrom->getConnectedFrom();
+    }
+    if (connFrom != NULL) {
+      idClock = connFrom->getClockDomain();
+    }
+    //searching forward
+    else {
+      QList<ConnectedInterface*> lstIfaces = getForwardFunctionalInterfaces(this);
+      if (lstIfaces.isEmpty()) throw(Exception(IFACE_INVALID_CLKFREQ,this));
+      foreach(ConnectedInterface* iface, lstIfaces) {
+        // test if all ifaces are in the same clock domain
+        if (idClock == -1) {
+          idClock = iface->getClockDomain();
+        }
+        else if (idClock != iface->getClockDomain()) throw(Exception(IFACE_INVALID_CLKFREQ,this));
+      }
+    }
   }
 
   return idClock;
 }
 
   }
 
   return idClock;
 }
 
+QList<ConnectedInterface*> GroupInterface::getForwardFunctionalInterfaces(GroupInterface* groupIface) {
+  QList<ConnectedInterface*> lstIfaces;
+  foreach(ConnectedInterface* iface, groupIface->getConnectedTo()) {
+    if (iface->isFunctionalInterface()) {
+      lstIfaces.append(iface);
+    }
+    else if (iface->isGroupInterface()) {
+      lstIfaces.append(getForwardFunctionalInterfaces(AI_TO_GRP(iface)));
+    }
+  }
+  return lstIfaces;
+}
 
 void GroupInterface::connectionsValidation(QStack<AbstractInterface*> *interfacetoValidate, QList<AbstractInterface*> *validatedInterfaces) throw(Exception) {
     cout << "group interface connection validation" << endl;
 
 void GroupInterface::connectionsValidation(QStack<AbstractInterface*> *interfacetoValidate, QList<AbstractInterface*> *validatedInterfaces) throw(Exception) {
     cout << "group interface connection validation" << endl;
index 35f0916ba55fa86d60ed549f525981f51b1ff051..6bedd67151d34e2090b3df488a63e6bb480d84ed 100644 (file)
@@ -10,6 +10,7 @@
 #include "Exception.h"
 class Exception;
 
 #include "Exception.h"
 class Exception;
 
+
 using namespace std;
 using namespace Qt;
 
 using namespace std;
 using namespace Qt;
 
@@ -43,11 +44,13 @@ public :
 
   // testers
   bool isGroupInterface();
 
   // testers
   bool isGroupInterface();
-  bool canConnectTo(AbstractInterface* iface);
-  bool canConnectFrom(AbstractInterface* iface);
+  bool canConnectTo(AbstractInterface* iface, bool testClock);
+  bool canConnectFrom(AbstractInterface* iface, bool testClock);
 
   // others
   AbstractInterface *clone();
 
   // others
   AbstractInterface *clone();
+  QList<ConnectedInterface *> getForwardFunctionalInterfaces(GroupInterface* groupIface);
+
   void connectionsValidation(QStack<AbstractInterface *> *interfacetoValidate, QList<AbstractInterface *> *validatedInterfaces) throw(Exception);
 
 };
   void connectionsValidation(QStack<AbstractInterface *> *interfacetoValidate, QList<AbstractInterface *> *validatedInterfaces) throw(Exception);
 
 };
index cc0a3ad6231cfbea9d783459fc55c324f007aa87..fb76c71fb379cebcb24096eded1dad5cb7b3c518 100644 (file)
@@ -32,6 +32,8 @@ InterfacePropertiesDialog::InterfacePropertiesDialog(InterfaceItem *_inter, QWid
   layProp->addWidget(new QLabel(inter->refInter->getPurposeString()), 5, 1);
   layProp->addWidget(new QLabel("Type :"), 6, 0);
   layProp->addWidget(new QLabel(inter->refInter->getTypeString()), 6, 1);
   layProp->addWidget(new QLabel(inter->refInter->getPurposeString()), 5, 1);
   layProp->addWidget(new QLabel("Type :"), 6, 0);
   layProp->addWidget(new QLabel(inter->refInter->getTypeString()), 6, 1);
+  layProp->addWidget(new QLabel("related to clock :"), 7, 0);
+  layProp->addWidget(new QLabel(inter->refInter->getClockIfaceString()), 7, 1);
 
   QHBoxLayout* layBottom = new QHBoxLayout;
   layBottom->addStretch();
 
   QHBoxLayout* layBottom = new QHBoxLayout;
   layBottom->addStretch();
index 99f13bba8c36dc32d9ac8be5a71bdea97c93d654..6f4716ad57dfe346ab2efb149a2848f3bf281e8a 100644 (file)
@@ -311,9 +311,14 @@ void MainWindow::save(QString projectFile) {
   params->save(projectFile);
 }
 
   params->save(projectFile);
 }
 
-void MainWindow::slotLoadProject(){
+void MainWindow::slotLoadProject(QString fileName){
 
 
-  params->projectFile = QFileDialog::getOpenFileName(0, "select a project file", "save/",tr("sauvegardes (*.xml)"));
+  if (fileName == "") {
+    params->projectFile = QFileDialog::getOpenFileName(0, "select a project file", "save/",tr("sauvegardes (*.xml)"));
+  }
+  else {
+    params->projectFile = fileName;
+  }
 
   if(! params->projectFile.isEmpty()){
     GroupWidget* topGroup = dispatcher->loadProject(params->projectFile);
 
   if(! params->projectFile.isEmpty()){
     GroupWidget* topGroup = dispatcher->loadProject(params->projectFile);
index 96fab67769428f4a8e14a11698c19dfb620d9830..613b3d16b8cb4b775447cac9a0ca6c21744c4b08 100644 (file)
@@ -121,10 +121,10 @@ private:
 public slots:
   void enableProjectActions(bool enbMenu, quint16 mask = 0, quint8 op = 0); // default : add nothing
   void enableAnalysisActions(bool enbMenu, quint16 mask = 0, quint8 op = 0); // default : add nothing
 public slots:
   void enableProjectActions(bool enbMenu, quint16 mask = 0, quint8 op = 0); // default : add nothing
   void enableAnalysisActions(bool enbMenu, quint16 mask = 0, quint8 op = 0); // default : add nothing
+  void slotLoadProject(QString fileName = "");
 
 private slots:
 
 private slots:
-  void slotNewProject();
-  void slotLoadProject();
+  void slotNewProject();  
   void slotSaveProject();
   void slotSaveAsProject();
   bool slotCloseProject();
   void slotSaveProject();
   void slotSaveAsProject();
   bool slotCloseProject();
index 553955b414c24a5157c34a96934b391509bcc8e1..56a34dbe9b8d9939a866177f1f78c93a96ce7165 100644 (file)
@@ -80,7 +80,7 @@ void ReferenceBlock::load(QDomElement &elt) throw(Exception) {
 
   // create interfaces that correspond to a wishbone parameter, if any.
   try {
 
   // create interfaces that correspond to a wishbone parameter, if any.
   try {
-    createInterfaceForParameters();    
+    createInterfaceForWishbone();
   }
   catch(int err) {
     throw(err);
   }
   catch(int err) {
     throw(err);
@@ -220,7 +220,7 @@ void ReferenceBlock::loadInterfaces(QDomElement &elt) throw(Exception) {
   int purpose;
   QString multStr;
   int mult;
   int purpose;
   QString multStr;
   int mult;
-  AbstractInterface* inter;
+  ReferenceInterface* iface;
 
   if ((elt.isNull()) || (elt.tagName() != "interfaces")) throw (Exception(BLOCKFILE_CORRUPTED));
 
 
   if ((elt.isNull()) || (elt.tagName() != "interfaces")) throw (Exception(BLOCKFILE_CORRUPTED));
 
@@ -236,9 +236,12 @@ void ReferenceBlock::loadInterfaces(QDomElement &elt) throw(Exception) {
     purposeStr = eltInput.attribute("purpose","none");
     if (purposeStr == "clock") {
       nameStr = eltInput.attribute("name","none");
     purposeStr = eltInput.attribute("purpose","none");
     if (purposeStr == "clock") {
       nameStr = eltInput.attribute("name","none");
-      inter = new ReferenceInterface(this,nameStr,AbstractInterface::Input, AbstractInterface::Clock, "boolean", "1", AbstractInterface::LittleEndian, 1);
-      inputs.append(inter);
-      clocks.append(inter);
+      iface = new ReferenceInterface(this,nameStr,AbstractInterface::Input, AbstractInterface::Clock, "boolean", "1", AbstractInterface::LittleEndian, 1);
+      if (! iface->checkSetClockIface(nameStr)) {
+        throw (Exception(BLOCKFILE_CORRUPTED));
+      }
+      inputs.append(iface);
+      clocks.append(iface);
     }
   }
   cout << "number of clocks: " << clocks.size() << endl;
     }
   }
   cout << "number of clocks: " << clocks.size() << endl;
@@ -270,15 +273,19 @@ void ReferenceBlock::loadInterfaces(QDomElement &elt) throw(Exception) {
       multStr = eltInput.attribute("multiplicity","none");
       mult = ReferenceInterface::translateMultiplicity(multStr);
 
       multStr = eltInput.attribute("multiplicity","none");
       mult = ReferenceInterface::translateMultiplicity(multStr);
 
-      inter = new ReferenceInterface(this,nameStr, AbstractInterface::Input, purpose, typeStr, widthStr, endianess, mult);
+      iface = new ReferenceInterface(this,nameStr, AbstractInterface::Input, purpose, typeStr, widthStr, endianess, mult);
       if (clockStr == "none") {
       if (clockStr == "none") {
-        // no clock given, take the first one (hope that there is a single one !)
+        if (clocks.size() > 1) {
+          // if several clocks, the associated one MUST be given
+          throw (Exception(BLOCKFILE_CORRUPTED));
+        }
+        // no clock given, take the single one
         clockStr = clocks.at(0)->getName();
       }
         clockStr = clocks.at(0)->getName();
       }
-      if (! inter->setClockIface(clockStr)) {
+      if (! iface->checkSetClockIface(clockStr)) {
         throw (Exception(BLOCKFILE_CORRUPTED));
       }
         throw (Exception(BLOCKFILE_CORRUPTED));
       }
-      inputs.append(inter);
+      inputs.append(iface);
     }
   }
   // getting each control
     }
   }
   // getting each control
@@ -289,13 +296,17 @@ void ReferenceBlock::loadInterfaces(QDomElement &elt) throw(Exception) {
     nameStr = eltInput.attribute("iface","none");
     AbstractInterface* dataIface = getIfaceFromName(nameStr);
     if (dataIface == NULL) throw (Exception(BLOCKFILE_CORRUPTED));
     nameStr = eltInput.attribute("iface","none");
     AbstractInterface* dataIface = getIfaceFromName(nameStr);
     if (dataIface == NULL) throw (Exception(BLOCKFILE_CORRUPTED));
-    nameStr = dataIface->getName()+"_enb";
-    inter = new ReferenceInterface(this,nameStr,AbstractInterface::Input, AbstractInterface::Control,"boolean","1", AbstractInterface::LittleEndian, 1);
-    if (!inter->setAssociatedIface(dataIface)) {
+    QString nameEnbStr = dataIface->getName()+"_enb";
+    iface = new ReferenceInterface(this,nameEnbStr,AbstractInterface::Input, AbstractInterface::Control,"boolean","1", AbstractInterface::LittleEndian, 1);
+    if (!iface->setAssociatedIface(dataIface)) {
       throw (Exception(BLOCKFILE_CORRUPTED));      
     }
       throw (Exception(BLOCKFILE_CORRUPTED));      
     }
-    cout << "created a control input named " << qPrintable(inter->getName()) << endl;
-    inputs.append(inter);
+    clockStr = dataIface->getClockIfaceString();
+    if (! iface->checkSetClockIface(clockStr)) {
+      throw (Exception(BLOCKFILE_CORRUPTED));
+    }
+    cout << "created a control input named " << qPrintable(iface->getName()) << endl;
+    inputs.append(iface);
   }
   QDomElement eltOutputs = eltInputs.nextSiblingElement("outputs");
   QDomNodeList listNodeOutputs = eltOutputs.elementsByTagName("output");
   }
   QDomElement eltOutputs = eltInputs.nextSiblingElement("outputs");
   QDomNodeList listNodeOutputs = eltOutputs.elementsByTagName("output");
@@ -323,15 +334,20 @@ void ReferenceBlock::loadInterfaces(QDomElement &elt) throw(Exception) {
     multStr = eltOutput.attribute("multiplicity","none");
     mult = ReferenceInterface::translateMultiplicity(multStr);
 
     multStr = eltOutput.attribute("multiplicity","none");
     mult = ReferenceInterface::translateMultiplicity(multStr);
 
-    inter = new ReferenceInterface(this,nameStr,AbstractInterface::Output, purpose,typeStr,widthStr, endianess, mult);
+    iface = new ReferenceInterface(this,nameStr,AbstractInterface::Output, purpose,typeStr,widthStr, endianess, mult);
     if (clockStr == "none") {
     if (clockStr == "none") {
-      // no clock given, take the first one (hope that there is a single one !)
+      if (clocks.size() > 1) {
+        // if several clocks, the associated one MUST be given
+        throw (Exception(BLOCKFILE_CORRUPTED));
+      }
+      // no clock given, take the single one
       clockStr = clocks.at(0)->getName();
     }
       clockStr = clocks.at(0)->getName();
     }
-    if (! inter->setClockIface(clockStr)) {
+    if (! iface->checkSetClockIface(clockStr)) {
       throw (Exception(BLOCKFILE_CORRUPTED));
     }
       throw (Exception(BLOCKFILE_CORRUPTED));
     }
-    outputs.append(inter);
+
+    outputs.append(iface);
   }
   // getting each control
   QDomNodeList listNodeOutCtl = eltOutputs.elementsByTagName("control");
   }
   // getting each control
   QDomNodeList listNodeOutCtl = eltOutputs.elementsByTagName("control");
@@ -342,12 +358,16 @@ void ReferenceBlock::loadInterfaces(QDomElement &elt) throw(Exception) {
     AbstractInterface* dataIface = getIfaceFromName(nameStr);
     if (dataIface == NULL) throw (Exception(BLOCKFILE_CORRUPTED));
     nameStr = dataIface->getName()+"_enb";
     AbstractInterface* dataIface = getIfaceFromName(nameStr);
     if (dataIface == NULL) throw (Exception(BLOCKFILE_CORRUPTED));
     nameStr = dataIface->getName()+"_enb";
-    inter = new ReferenceInterface(this,nameStr,AbstractInterface::Output, AbstractInterface::Control,"boolean","1",AbstractInterface::LittleEndian, 1);
-    if (!inter->setAssociatedIface(dataIface)) {
+    iface = new ReferenceInterface(this,nameStr,AbstractInterface::Output, AbstractInterface::Control,"boolean","1",AbstractInterface::LittleEndian, 1);
+    if (!iface->setAssociatedIface(dataIface)) {
       throw (Exception(BLOCKFILE_CORRUPTED));      
     }
       throw (Exception(BLOCKFILE_CORRUPTED));      
     }
-    cout << "created a control output named " << qPrintable(inter->getName()) << endl;
-    outputs.append(inter);
+    clockStr = dataIface->getClockIfaceString();
+    if (! iface->checkSetClockIface(clockStr)) {
+      throw (Exception(BLOCKFILE_CORRUPTED));
+    }
+    cout << "created a control output named " << qPrintable(iface->getName()) << endl;
+    outputs.append(iface);
   }
 
   QDomElement eltBidirs = eltInputs.nextSiblingElement("bidirs");
   }
 
   QDomElement eltBidirs = eltInputs.nextSiblingElement("bidirs");
@@ -375,19 +395,24 @@ void ReferenceBlock::loadInterfaces(QDomElement &elt) throw(Exception) {
     multStr = eltBidir.attribute("multiplicity","none");
     mult = ReferenceInterface::translateMultiplicity(multStr);
 
     multStr = eltBidir.attribute("multiplicity","none");
     mult = ReferenceInterface::translateMultiplicity(multStr);
 
-    inter = new ReferenceInterface(this,nameStr,AbstractInterface::InOut, purpose,typeStr,widthStr, endianess, mult);
+    iface = new ReferenceInterface(this,nameStr,AbstractInterface::InOut, purpose,typeStr,widthStr, endianess, mult);
     if (clockStr == "none") {
     if (clockStr == "none") {
-      // no clock given, take the first one (hope that there is a single one !)
+      if (clocks.size() > 1) {
+        // if several clocks, the associated one MUST be given
+        throw (Exception(BLOCKFILE_CORRUPTED));
+      }
+      // no clock given, take the single one
       clockStr = clocks.at(0)->getName();
     }
       clockStr = clocks.at(0)->getName();
     }
-    if (! inter->setClockIface(clockStr)) {
+    if (! iface->checkSetClockIface(clockStr)) {
       throw (Exception(BLOCKFILE_CORRUPTED));
     }
       throw (Exception(BLOCKFILE_CORRUPTED));
     }
-    bidirs.append(inter);
+
+    bidirs.append(iface);
   }
 }
 
   }
 }
 
-void ReferenceBlock::createInterfaceForParameters() throw(Exception){
+void ReferenceBlock::createInterfaceForWishbone() throw(Exception){
   ReferenceInterface* iface = NULL;
   foreach(BlockParameter* param, params) {
     
   ReferenceInterface* iface = NULL;
   foreach(BlockParameter* param, params) {
     
@@ -484,7 +509,7 @@ QDataStream& operator<<(QDataStream &out, const ReferenceBlock &b) {
       toWrite << iface->getClockIfaceString();
     }
   }
       toWrite << iface->getClockIfaceString();
     }
   }
-  // secondly, write other ifaces
+  // thirdly, write other ifaces
   for(int i=0; i<b.inputs.size(); i++){
     ReferenceInterface *iface = (ReferenceInterface *)(b.inputs.at(i));
     if ((iface->getPurpose() != AbstractInterface::Control) && (iface->getPurpose() != AbstractInterface::Clock)) {
   for(int i=0; i<b.inputs.size(); i++){
     ReferenceInterface *iface = (ReferenceInterface *)(b.inputs.at(i));
     if ((iface->getPurpose() != AbstractInterface::Control) && (iface->getPurpose() != AbstractInterface::Clock)) {
@@ -624,13 +649,8 @@ QDataStream& operator>>(QDataStream &in, ReferenceBlock &b) {
     QString clk;
     in >> clkType;
     in >> clk;
     QString clk;
     in >> clkType;
     in >> clk;
-    if (clkType == AbstractInterface::ParameterName) {
-      clk = "$"+clk;
-    }
-    if (! iface->setClockIface(clk)) {
-      cerr << "Abnormal case while reading a reference block in library: cannot set ref clock for an interface" << endl;
-    }
-
+    iface->setClockIfaceName(clk);
+    iface->setClockIfaceType(clkType);
     b.inputs.append(iface);
     if (iface->getPurpose() == AbstractInterface::Data) {
       QString ctlRefName = iface->getName()+"_enb";
     b.inputs.append(iface);
     if (iface->getPurpose() == AbstractInterface::Data) {
       QString ctlRefName = iface->getName()+"_enb";
@@ -664,12 +684,8 @@ QDataStream& operator>>(QDataStream &in, ReferenceBlock &b) {
     QString clk;
     in >> clkType;
     in >> clk;
     QString clk;
     in >> clkType;
     in >> clk;
-    if (clkType == AbstractInterface::ParameterName) {
-      clk = "$"+clk;
-    }
-    if (! iface->setClockIface(clk)) {
-      cerr << "Abnormal case while reading a reference block in library: cannot set ref clock for an interface" << endl;
-    }
+    iface->setClockIfaceName(clk);
+    iface->setClockIfaceType(clkType);
     b.outputs.append(iface);
     if (iface->getPurpose() == AbstractInterface::Data) {
       QString ctlRefName = iface->getName()+"_enb";      
     b.outputs.append(iface);
     if (iface->getPurpose() == AbstractInterface::Data) {
       QString ctlRefName = iface->getName()+"_enb";      
@@ -703,12 +719,8 @@ QDataStream& operator>>(QDataStream &in, ReferenceBlock &b) {
     QString clk;
     in >> clkType;
     in >> clk;
     QString clk;
     in >> clkType;
     in >> clk;
-    if (clkType == AbstractInterface::ParameterName) {
-      clk = "$"+clk;
-    }
-    if (! iface->setClockIface(clk)) {
-      cerr << "Abnormal case while reading a reference block in library: cannot set ref clock for an interface" << endl;
-    }
+    iface->setClockIfaceName(clk);
+    iface->setClockIfaceType(clkType);
     b.bidirs.append(iface);
   }
 
     b.bidirs.append(iface);
   }
 
index 2aca8797119874d09f96fc3c239889131a7f5ce4..63dca3cf92f16153ecb99423315bc8de340bba6d 100644 (file)
@@ -61,7 +61,7 @@ private:
   void loadInformations(QDomElement &elt) throw(Exception);
   void loadParameters(QDomElement &elt) throw(Exception);
   void loadInterfaces(QDomElement &elt) throw(Exception);
   void loadInformations(QDomElement &elt) throw(Exception);
   void loadParameters(QDomElement &elt) throw(Exception);
   void loadInterfaces(QDomElement &elt) throw(Exception);
-  void createInterfaceForParameters() throw(Exception);
+  void createInterfaceForWishbone() throw(Exception);
 
   friend QDataStream &operator<<(QDataStream &out, const ReferenceBlock &b);
   friend QDataStream &operator>>(QDataStream &in, ReferenceBlock &b);
 
   friend QDataStream &operator<<(QDataStream &out, const ReferenceBlock &b);
   friend QDataStream &operator>>(QDataStream &in, ReferenceBlock &b);
index fdebeaa6d611eafe3e1ed5703ad382343161606a..ae5613b1e32103ad152a174e9d594f36982ecd29 100644 (file)
@@ -1,5 +1,6 @@
 #include "ReferenceInterface.h"
 #include "AbstractBlock.h"
 #include "ReferenceInterface.h"
 #include "AbstractBlock.h"
+#include "BlockParameter.h"
 
 ReferenceInterface::ReferenceInterface(AbstractBlock* _owner)  throw(Exception) : AbstractInterface(_owner) {
   if (_owner->isReferenceBlock()) throw(Exception(BLOCK_INVALID_TYPE));
 
 ReferenceInterface::ReferenceInterface(AbstractBlock* _owner)  throw(Exception) : AbstractInterface(_owner) {
   if (_owner->isReferenceBlock()) throw(Exception(BLOCK_INVALID_TYPE));
@@ -76,3 +77,92 @@ int ReferenceInterface::getClockDomain() throw(Exception) {
 
   throw(Exception(IFACE_INVALID_TYPE,this));
 }
 
   throw(Exception(IFACE_INVALID_TYPE,this));
 }
+
+/* NOTE on clock associated to each interface:
+
+   Each interface must be associated to a clock so that blast can determine
+   if there are no problems with clocks domains. This clock must correspond to
+   the name of a clock interface owned by the same block or to a user parameter
+   for which the value indicate the clock frequency. This latter case is used only
+   for input interfaces of blocks that will be directly linked to the outside of top group
+   (NB: directly only means that there are no others functional blocks between the
+   mentionnned block and the outside, but it can be within subgroups) and with these interfaces
+   that receives a data signal synchronized on an outside clock that is not provided to the design.
+   For example, on the APF27 board, there is a link between imx and spartan 3 and signals are at 133MHz.
+   But there is no clock provided to the FPGA.
+
+   Reference blocks are created with:
+     - input clocks are associated to themselves.
+     - output clocks are associated to one of the clock.
+     - reset are associated to one of the clock (since they are generated
+     by clkrstgen, they are really synchronized with a clock)
+     - all other signals are associated to one of the clock or to a parameter
+   The name of the associated clock is given in the xml description file. If not
+   indicated it is by default the name of the input clock. In case of there are
+   several input clocks, the xml is incoherent if other signal do not indicate the name of
+   the associated clock.
+
+   Functional block are created by cloning a reference thus they follow the same rules as
+   reference blocks.
+
+   A group is created with interfaces that have an inherited clock name thus, setting a name
+   is meaningless and an iterative process must be used to retrieve the clock domain from
+   the interface that is connected from the group interface (cf. GroupBlock::getClockDomain())
+
+   The following method checks if these rules are applied correctly.
+
+*/
+bool ReferenceInterface::checkSetClockIface(QString _name) {
+
+  /* 3 cases :
+     - this is a clock input: name must be the same as the iface name
+     - this is an output clock or reset: name must be an existing clock name.
+     - other cases: name must ba a parameter name or an exisiting clock name
+
+    NB: if it's a parameter it must be prepend with a $.
+  */
+  if ((purpose == Clock) && (direction == Input)) {
+    if (_name == name) {
+      clkIfaceName = _name;
+      clkIfaceType = ClockName;
+      return true;
+    }
+  }
+  else if ((purpose == Reset) || ((purpose == Clock) && (direction == Output))) {
+    QList<AbstractInterface*> clocks = owner->getInterfaces(Input, Clock);
+    foreach(AbstractInterface* iface, clocks) {
+      if (iface->getName() == _name) {
+        clkIfaceName = _name;
+        clkIfaceType = ClockName;
+        return true;
+      }
+    }
+  }
+  else {
+    if (_name.at(0) == '$') {
+      _name.remove(0,1);
+      QList<BlockParameter* > params = owner->getUserParameters();
+      foreach(BlockParameter* p, params) {
+        if (p->getName() == _name) {
+          clkIfaceName = _name;
+          clkIfaceType = ParameterName;
+          return true;
+        }
+      }
+    }
+    else {
+      QList<AbstractInterface*> clocks = owner->getInterfaces(Input, Clock);
+      foreach(AbstractInterface* iface, clocks) {
+        if (iface->getName() == _name) {
+          clkIfaceName = _name;
+          clkIfaceType = ClockName;
+          return true;
+        }
+      }
+    }
+  }
+  clkIfaceName = "";
+  clkIfaceType = NoName;
+  return false;
+}
+
index cf54f4a6cc86f3d2d0726df25649a4745545f123..68c01797153eb8f64c66fdd1a0e47a0b5f05b23a 100644 (file)
@@ -31,6 +31,7 @@ public :
   bool isReferenceInterface();
 
   // others
   bool isReferenceInterface();
 
   // others
+  bool checkSetClockIface(QString _name);
 
   static int translatePurpose(const QString& txt);  
   static int translateMultiplicity(const QString& txt);
 
   static int translatePurpose(const QString& txt);  
   static int translateMultiplicity(const QString& txt);
index 35dd592d878c9b49c1e1aec8c4aab5d186ea1a67..763a8d2aaed1be5e55570e0d8b9a28ce4fb80818 100644 (file)
--- a/blast.cpp
+++ b/blast.cpp
@@ -12,6 +12,9 @@ int main(int argc, char *argv[]) {
     MainWindow w;
 
     w.show();
     MainWindow w;
 
     w.show();
+    if (argc == 2) {
+      w.slotLoadProject(argv[1]);
+    }
 
     return a.exec();
 }
 
     return a.exec();
 }
index 34b82873cb3f0f3bcbc4b64de5bf09d190a9010d..fb924e98cd138bcd4ed6b72c59fa8e3ccaa852e9 100644 (file)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE QtCreatorProject>
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE QtCreatorProject>
-<!-- Written by QtCreator 4.2.0, 2018-05-09T18:21:40. -->
+<!-- Written by QtCreator 4.2.0, 2018-05-15T19:43:34. -->
 <qtcreator>
  <data>
   <variable>EnvironmentId</variable>
 <qtcreator>
  <data>
   <variable>EnvironmentId</variable>
index 26ec97a382dc697dcb8886f94f9d00f9d9ae58eb..05d683a382a178f27d4330691893699f717a7d4b 100644 (file)
@@ -2,12 +2,12 @@
 <config>
   <categories>
     <category name="root" id="0" parent="-1"/>
 <config>
   <categories>
     <category name="root" id="0" parent="-1"/>
-    <category name="math" id="1" parent="0"/>
+    <category name="stimulis" id="1" parent="0"/>
     <category name="trigonemetric" id="2" parent="1"/>
     <category name="arithmetics" id="3" parent="1"/>
     <category name="filters" id="4" parent="0"/>
     <category name="wishbone" id="5" parent="0"/>
     <category name="trigonemetric" id="2" parent="1"/>
     <category name="arithmetics" id="3" parent="1"/>
     <category name="filters" id="4" parent="0"/>
     <category name="wishbone" id="5" parent="0"/>
-    <category name="generators" id="6" parent="0"/>
+    <category name="math" id="6" parent="0"/>
     <category name="observers" id="7" parent="0"/>
     <category name="special" id="8" parent="0"/>
     <category name="clock related" id="9" parent="8"/>
     <category name="observers" id="7" parent="0"/>
     <category name="special" id="8" parent="0"/>
     <category name="clock related" id="9" parent="8"/>
index 6046ebea0be755346aab416143e088acbc908df5..aa35dfe5c29a8ff0e2833ec6cca28ce499647a61 100644 (file)
@@ -60,8 +60,6 @@ if empty = '0' then
 end if;
 end if;
 end process read_fifo;
 end if;
 end if;
 end process read_fifo;
-
-end architecture clkdomain_convert_1024x8_1;
 </architecture>
   <patterns>
     <delta value="1"/>
 </architecture>
   <patterns>
     <delta value="1"/>
index 3fc15fe88cb31a5ae83e427ff9f1f830fa797dd8..6802074b92ab47b860f9e84b551a9f0ff93b5559 100644 (file)
Binary files a/lib/implementations/impls.bmf and b/lib/implementations/impls.bmf differ
index aa5e00ff45af7314447a1a469f5ec2aebe788c3b..389bbb3f5cfab62210d8c002c299be8d3dd8837f 100644 (file)
@@ -62,7 +62,7 @@ new_line &lt;= '0';
 item_count := 0;
 line_count := 0;
 last_line := '0';
 item_count := 0;
 line_count := 0;
 last_line := '0';
-out_enb &lt;= '0';
+@{out_val_enb} &lt;= '0';
 dly_item_count := 0;
 dly_line_count := 0;
 item_count_enb := '0';
 dly_item_count := 0;
 dly_line_count := 0;
 item_count_enb := '0';
@@ -70,7 +70,7 @@ line_count_enb := '0';
 
 elsif rising_edge(@{clk}) then
 
 
 elsif rising_edge(@{clk}) then
 
-out_enb &lt;= '0';
+@{out_val_enb} &lt;= '0';
 
 if do_read = '1' then
 
 
 if do_read = '1' then
 
@@ -101,7 +101,7 @@ end if;
 else
 read(l, in_val);
 out_s &lt;= to_unsigned(in_val, item_width);
 else
 read(l, in_val);
 out_s &lt;= to_unsigned(in_val, item_width);
-out_enb &lt;= '1';
+@{out_val_enb} &lt;= '1';
 item_count := item_count + 1;
 if (item_count &lt; item_per_line) then
 read(l, comma);
 item_count := item_count + 1;
 if (item_count &lt; item_per_line) then
 read(l, comma);
@@ -121,7 +121,7 @@ end if;
 end if;
 end if;
 
 end if;
 end if;
 
-elsif start_read = '1' then
+elsif @{start} = '1' then
 -- reading the first line
 readline(in_data, l);
 line_count := line_count + 1;
 -- reading the first line
 readline(in_data, l);
 line_count := line_count + 1;
@@ -132,8 +132,6 @@ do_read &lt;= '1';
 end if;
 
 end process read_data;
 end if;
 
 end process read_data;
-
-end architecture read_csv_a;
 </architecture>
   <patterns>
     <delta value="$nb_lines*$item_per_line"/>
 </architecture>
   <patterns>
     <delta value="$nb_lines*$item_per_line"/>
index b6e19c40b90ee3e404fdd73d959bd808e9a6feb6..59f84edccaf6c1aa23b0c88289b077412686ffe9 100644 (file)
@@ -7,15 +7,12 @@
       This IP allows to pass 8 bits values from a clock domain to another. It uses a FIFO of 1024 entries.
     </description>
   </informations>
       This IP allows to pass 8 bits values from a clock domain to another. It uses a FIFO of 1024 entries.
     </description>
   </informations>
-  <parameters>
-    <parameter type="real" context="generic" name="clk_in_freq" value="100"/>
-    <parameter type="real" context="generic" name="clk_out_freq" value="100"/>
-  </parameters>
+  <parameters />
   <interfaces>
     <inputs>
       <input width="1" multiplicity="1" endian="little" type="boolean" name="clk_in" purpose="clock"/>
       <input width="1" multiplicity="1" endian="little" type="boolean" name="clk_out" purpose="clock"/>
   <interfaces>
     <inputs>
       <input width="1" multiplicity="1" endian="little" type="boolean" name="clk_in" purpose="clock"/>
       <input width="1" multiplicity="1" endian="little" type="boolean" name="clk_out" purpose="clock"/>
-      <input width="1" multiplicity="1" endian="little" type="boolean" name="reset" purpose="reset"/>
+      <input width="1" multiplicity="1" endian="little" type="boolean" name="reset" purpose="reset" clock="clk_in"/>
       <input width="8" multiplicity="1" endian="little" type="natural" name="data_in" purpose="data" clock="clk_in"/>
       <control iface="data_in"/>
     </inputs>
       <input width="8" multiplicity="1" endian="little" type="natural" name="data_in" purpose="data" clock="clk_in"/>
       <control iface="data_in"/>
     </inputs>
index 2ddf876644fe91dde8180b36b935250ac6093fb4..112add7cbc3b36ac367aeaed15c875aec52abeac 100644 (file)
@@ -4,7 +4,7 @@
     <name>
       generator-cst
     </name>
     <name>
       generator-cst
     </name>
-    <category ids="6" />  
+    <category ids="1" />  
     <description>
       generates V consecutives constant values, followed by Z idle cycles    
     </description>    
     <description>
       generates V consecutives constant values, followed by Z idle cycles    
     </description>    
@@ -21,6 +21,7 @@
     <inputs>
       <input name="clk" width="1" purpose="clock" />
       <input name="rst" width="1" purpose="reset" />
     <inputs>
       <input name="clk" width="1" purpose="clock" />
       <input name="rst" width="1" purpose="reset" />
+      <input purpose="data" name="start" width="1" multiplicity="1" endian="little" type="boolean"/>
     </inputs>
     <outputs>
       <output name="data_o" width="$data_width"/>
     </inputs>
     <outputs>
       <output name="data_o" width="$data_width"/>
index dfc18eb663da85303132232323ea50e925dd93d9..0c350f67649357d3bc8ced1018062e13a785d18b 100644 (file)
@@ -4,7 +4,7 @@
     <name>
       generator-img
     </name>
     <name>
       generator-img
     </name>
-    <category ids="6" />  
+    <category ids="1" />  
     <description>
       generates a RGB image, reading if from a csv file
     </description>    
     <description>
       generates a RGB image, reading if from a csv file
     </description>    
@@ -21,6 +21,7 @@
     <inputs>
       <input name="clk" width="1" purpose="clock" />
       <input name="rst" width="1" purpose="reset" />
     <inputs>
       <input name="clk" width="1" purpose="clock" />
       <input name="rst" width="1" purpose="reset" />
+      <input purpose="data" name="start" width="1" multiplicity="1" endian="little" type="boolean"/>
     </inputs>
     <outputs>
       <output name="r_o" width="8"/>
     </inputs>
     <outputs>
       <output name="r_o" width="8"/>
index c8fd7f1e725f493a12f5447e553c1aa213c7c9ce..d738413e3de2de48d45990ffea844765b1a0346d 100644 (file)
@@ -2,7 +2,7 @@
 <block version="0.1" special="source">
   <informations>
     <name>read_csv</name>
 <block version="0.1" special="source">
   <informations>
     <name>read_csv</name>
-    <category ids="6"/>
+    <category ids="1"/>
     <description>
       read a csv file
     </description>
     <description>
       read a csv file
     </description>
@@ -20,6 +20,8 @@
     <inputs>
       <input purpose="clock" name="clk" width="1" multiplicity="1" endian="little" type="boolean"/>
       <input purpose="reset" name="reset" width="1" multiplicity="1" endian="little" type="boolean"/>
     <inputs>
       <input purpose="clock" name="clk" width="1" multiplicity="1" endian="little" type="boolean"/>
       <input purpose="reset" name="reset" width="1" multiplicity="1" endian="little" type="boolean"/>
+      <input purpose="data" name="start" width="1" multiplicity="1" endian="little" type="boolean"/>
+      
     </inputs>
     <outputs>
       <output purpose="data" name="out_val" width="$item_width" multiplicity="1" endian="little" type="expression"/>
     </inputs>
     <outputs>
       <output purpose="data" name="out_val" width="$item_width" multiplicity="1" endian="little" type="expression"/>
index ffc13f1aabbedeaed3d3a625235c20a55bfb292b..bdb7010f239ed79503f5c74ddce1be5cf78aa7ea 100644 (file)
Binary files a/lib/references/references.bmf and b/lib/references/references.bmf differ