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

Private GIT Repository
started clkconvert output gen
[blast.git] / FunctionalInterface.cpp
index eec7ea8e1249746285f271cb355063022eb0fa01..7d1217a88a31bec7c76f89fca1632e432ec0f16f 100644 (file)
@@ -5,7 +5,6 @@
 #include "FunctionalBlock.h"\r
 #include "GroupBlock.h"\r
 \r
-\r
 FunctionalInterface::FunctionalInterface(AbstractBlock* _owner, ReferenceInterface *_reference) throw(Exception) : ConnectedInterface(_owner) {\r
 \r
   if (_owner == NULL) throw(Exception(BLOCK_NULL));\r
@@ -116,7 +115,7 @@ bool FunctionalInterface::canConnectTo(AbstractInterface *iface) {
     if ((direction == Output) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) return true;\r
     if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;\r
   }\r
-  else if ((getOwner()->isSourceBlock()) && (iface->getOwner()->isTopGroupBlock())) {\r
+  else if ((getOwner()->isStimuliBlock()) && (iface->getOwner()->isTopGroupBlock())) {\r
     if ((direction == Output) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) return true;\r
   }\r
 \r
@@ -157,6 +156,45 @@ bool FunctionalInterface::canConnectFrom(AbstractInterface *iface) {
   return false;\r
 }\r
 \r
+int FunctionalInterface::getClockDomain() throw(Exception) {\r
+\r
+  int idClock = -1;\r
+\r
+  FunctionalInterface* iface = NULL;\r
+  if (clkIfaceType == ClockName) {\r
+    iface = AI_TO_FUN(getClockIface());\r
+  }\r
+  else if ((direction == Input) && (purpose == Clock)) {\r
+    iface = this;\r
+  }\r
+\r
+  if ( iface != NULL) {\r
+\r
+    // if iface is a functional interface, it is connected to clkrstgen_X (in top group) or to ext_clk_X (in subgroup)\r
+    ConnectedInterface* connFrom = iface->getConnectedFrom();\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
+      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
+      if (!ok) throw(Exception(IFACE_INVALID_CLKFREQ,this));\r
+    }\r
+  }\r
+\r
+  return idClock;\r
+}\r
+\r
 \r
 void FunctionalInterface::connectionsValidation(QStack<AbstractInterface *> *interfacetoValidate, QList<AbstractInterface *> *validatedInterfaces) throw(Exception) {\r
 \r