1 #include "ArithmeticEvaluator.h"
\r
2 #include "FunctionalInterface.h"
\r
3 #include "ReferenceInterface.h"
\r
4 #include "GroupInterface.h"
\r
5 #include "FunctionalBlock.h"
\r
6 #include "GroupBlock.h"
\r
8 FunctionalInterface::FunctionalInterface(AbstractBlock* _owner, ReferenceInterface *_reference) throw(Exception) : ConnectedInterface(_owner) {
\r
10 if (_owner == NULL) throw(Exception(BLOCK_NULL));
\r
11 if (_reference == NULL) throw(Exception(IFACE_NULL));
\r
13 if (! _owner->isFunctionalBlock()) throw(Exception(BLOCK_INVALID_TYPE));
\r
14 if (! _reference->isReferenceInterface()) throw(Exception(IFACE_INVALID_TYPE));
\r
16 reference = _reference;
\r
18 name = reference->getName();
\r
19 type = reference->getType();
\r
20 endianess = reference->getEndianess();
\r
21 width = reference->getWidthString();
\r
22 direction = reference->getDirection();
\r
23 purpose = reference->getPurpose();
\r
24 connectedFrom = NULL;
\r
27 bool FunctionalInterface::isFunctionalInterface() {
\r
31 int FunctionalInterface::getInterfaceMultiplicity() {
\r
35 FunctionalInterface* iface = NULL;
\r
37 if (direction == AbstractInterface::Input) {
\r
38 QList<AbstractInterface *> inputs = owner->getInputs();
\r
39 for(i=0;i<inputs.size();i++) {
\r
40 iface = AI_TO_FUN(inputs.at(i));
\r
41 if (iface->getReference() == reference) {
\r
46 else if (direction == AbstractInterface::Output) {
\r
47 QList<AbstractInterface *> outputs = owner->getOutputs();
\r
48 for(i=0;i<outputs.size();i++) {
\r
49 iface = AI_TO_FUN(outputs.at(i));
\r
50 if (iface->getReference() == reference) {
\r
55 else if (direction == AbstractInterface::InOut) {
\r
56 QList<AbstractInterface *> bidirs = owner->getBidirs();
\r
57 for(i=0;i<bidirs.size();i++) {
\r
58 iface = AI_TO_FUN(bidirs.at(i));
\r
59 if (iface->getReference() == reference) {
\r
64 if (ifaceCount == 0) {
\r
67 else if ( reference->getMultiplicity() == -1) {
\r
70 else if ( ifaceCount < reference->getMultiplicity()) {
\r
76 AbstractInterface *FunctionalInterface::clone() {
\r
77 int id = getInterfaceMultiplicity();
\r
78 if (id < 0) return NULL;
\r
79 FunctionalInterface *inter = new FunctionalInterface(owner, reference);
\r
80 inter->setWidth(width);
\r
81 inter->setName(reference->getName()+"_"+QString::number(id+1));
\r
85 bool FunctionalInterface::canConnectTo(AbstractInterface *iface) {
\r
88 necessary conditions :
\r
89 - this is an output or in/out interface
\r
90 - iface type must be functional or group interface
\r
91 - iface->connectedFrom must be NULL
\r
94 1 - iface is owned by a block (group or func) that is within the same group as the block that own this
\r
95 1.1 - this is output and iface is input
\r
96 1.2 - both are inout
\r
97 2 - iface is owned by the parent group of the block that owns this
\r
98 2.1 - this is an output, iface is an output of the group
\r
99 2.2 - both are inout
\r
100 3 - this is owned by a source block and iface is owned by the top group
\r
103 if (direction == Input) return false;
\r
104 if (iface->isReferenceInterface()) return false;
\r
105 ConnectedInterface* connIface = AI_TO_CON(iface);
\r
106 if (connIface->getConnectedFrom() != NULL) return false;
\r
107 // first case: interface of blocks within the same group
\r
108 if (getOwner()->getParent() == iface->getOwner()->getParent()) {
\r
110 if ((direction == Output) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) return true;
\r
111 if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
\r
113 // second case: iface = interface of the group that contains owner of this
\r
114 else if (getOwner()->getParent() == iface->getOwner()) {
\r
115 if ((direction == Output) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) return true;
\r
116 if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
\r
118 else if ((getOwner()->isStimuliBlock()) && (iface->getOwner()->isTopGroupBlock())) {
\r
119 if ((direction == Output) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) return true;
\r
126 bool FunctionalInterface::canConnectFrom(AbstractInterface *iface) {
\r
129 necessary conditions :
\r
130 - this is an input or in/out interface
\r
131 - iface type must be functional or group interface
\r
132 - this connectedFrom must be NULL
\r
135 1 - iface is owned by a block (group or func) that is within the same group as the block that own this
\r
136 1.1 - this is input and iface is output
\r
137 1.2 - both are inout
\r
138 2 - iface is owned by the parent group of the block that owns this
\r
139 2.1 - this is an input, iface is an input of the group
\r
140 2.2 - both are inout
\r
142 if (direction == Output) return false;
\r
143 if (iface->isReferenceInterface()) return false;
\r
144 if (connectedFrom != NULL) return false;
\r
146 if (getOwner()->getParent() == iface->getOwner()->getParent()) {
\r
148 if ((direction == Input) && (iface->getDirection() == Output) && (purpose == iface->getPurpose())) return true;
\r
149 if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
\r
151 else if (getOwner()->getParent() == iface->getOwner()) {
\r
152 if ((direction == Input) && (iface->getDirection() == Input) && (purpose == iface->getPurpose())) return true;
\r
153 if ((direction == InOut) && (iface->getDirection() == InOut) && (purpose == iface->getPurpose())) return true;
\r
159 int FunctionalInterface::getClockDomain() throw(Exception) {
\r
163 FunctionalInterface* iface = NULL;
\r
164 if (clkIfaceType == ClockName) {
\r
165 iface = AI_TO_FUN(getClockIface());
\r
167 else if ((direction == Input) && (purpose == Clock)) {
\r
171 if ( iface != NULL) {
\r
173 // if iface is a functional interface, it is connected to clkrstgen_X (in top group) or to ext_clk_X (in subgroup)
\r
174 ConnectedInterface* connFrom = iface->getConnectedFrom();
\r
175 if (connFrom == NULL) throw(Exception(IFACE_INVALID_CLKFREQ,this));
\r
177 if (connFrom->getOwner()->isFunctionalBlock()) {
\r
178 QString name = connFrom->getOwner()->getName();
\r
179 cout << "conn from clkrstgen: searching for clkdomain in " << qPrintable(name) << endl;
\r
182 idClock = name.toInt(&ok);
\r
183 if (!ok) throw(Exception(IFACE_INVALID_CLKFREQ,this));
\r
186 QString name = connFrom->getName();
\r
187 cout << "conn from group: searching for clkdomain in " << qPrintable(name) << endl;
\r
190 idClock = name.toInt(&ok);
\r
191 if (!ok) throw(Exception(IFACE_INVALID_CLKFREQ,this));
\r
199 void FunctionalInterface::connectionsValidation(QStack<AbstractInterface *> *interfacetoValidate, QList<AbstractInterface *> *validatedInterfaces) throw(Exception) {
\r
202 //inputs interfaces
\r
203 double widthInput, widthOutput;
\r
204 if(getDirection() == AbstractInterface::Input){
\r
205 widthInput = getDoubleWidth();
\r
206 widthOutput = getConnectedFrom()->getDoubleWidth();
\r
207 if(widthInput != widthOutput){
\r
208 throw new Exception(WIDTHS_NOT_EQUALS);
\r
210 foreach(AbstractInterface *inter, getOwner()->getOutputs()){
\r
211 if(inter->isConnectedTo()){
\r
212 if((!interfacetoValidate->contains(inter)) && (!validatedInterfaces->contains(inter))){
\r
213 interfacetoValidate->push(inter);
\r
218 //outputs interfaces
\r
219 else if(getDirection() == AbstractInterface::Output){
\r
220 widthOutput = getDoubleWidth();
\r
221 foreach(AbstractInterface *inter, getConnectedTo()){
\r
222 widthInput = inter->getDoubleWidth();
\r
223 if(widthInput != widthOutput){
\r
224 throw new Exception(WIDTHS_NOT_EQUALS);
\r
227 foreach(AbstractInterface *inter, getConnectedTo()){
\r
228 if((!interfacetoValidate->contains(inter)) && (!validatedInterfaces->contains(inter))){
\r
229 interfacetoValidate->push(inter);
\r
233 else if(getDirection() == AbstractInterface::InOut){
\r