]> 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 c0b63af1327c97c7e0aea14f34e80a14fb92d02a..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
@@ -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