00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #include "FPcommon.h"
00034 #include "Nets.h"
00035 #include "Node.h"
00036 using namespace parquetfp;
00037
00038 Node::Node(const char* block_name,double block_area,double minAr,double maxAr,
00039 int index,bool type)
00040 : _area(block_area),_minAr(minAr),_maxAr(maxAr),_orient(N),
00041 _isOrientFixed(false),_slackX(0), _slackY(0),_index(index),_type(type),
00042 _isMacro(false),allPinsAtCenter(false),needSyncOrient(true)
00043 {
00044
00045
00046 _name = block_name;
00047 _placement.x=0;
00048 _placement.y=0;
00049 _width = sqrt(_area*_minAr);
00050 _height = _width/_minAr;
00051 _origWidth = _width;
00052 _origHeight = _height;
00053 }
00054
00055
00056 Node::Node()
00057 : _area(0),_minAr(0),_maxAr(0),_orient(N),_isOrientFixed(false),_slackX(0),
00058 _slackY(0),_index(0),_type(true),_isMacro(false),allPinsAtCenter(false)
00059 {
00060
00061 _name = "";
00062 _placement.x=0;
00063 _placement.y=0;
00064 _height = 0;
00065 _width = 0;
00066 }
00067
00068 void Node::changeOrient(ORIENT newOrient, Nets& nets)
00069 {
00070 if(_orient == newOrient)
00071 return;
00072
00073 if(_orient%2 != newOrient%2)
00074 {
00075 double tempHeight = _height;
00076 _height = _width;
00077 _width = tempHeight;
00078 }
00079
00080
00081 itNodePin itP;
00082 for(itP = _pins.begin(); itP != _pins.end(); ++itP)
00083 {
00084 pin& netPin = nets.getNet(itP->netIndex).getPin(itP->pinOffset);
00085 netPin.changeOrient(newOrient);
00086 }
00087 _orient = newOrient;
00088
00089 }
00090
00091 void Node::syncOrient(Nets& nets)
00092 {
00093
00094 if(needSyncOrient)
00095 {
00096 if(int(_orient)%2 == 1)
00097 {
00098 double tempHeight = _height;
00099 _height = _width;
00100 _width = tempHeight;
00101 }
00102 }
00103
00104
00105 itNodePin itP;
00106 for(itP = _pins.begin(); itP != _pins.end(); ++itP)
00107 {
00108 pin& netPin = nets.getNet(itP->netIndex).getPin(itP->pinOffset);
00109 netPin.changeOrient(_orient);
00110 }
00111 }
00112
00113 bool Node::calcAllPinsAtCenter(Nets& nets)
00114 {
00115 itNodePin itP;
00116 bool localAllPinsAtCenter=true;
00117 for(itP = _pins.begin(); itP != _pins.end(); ++itP)
00118 {
00119 pin& netPin = nets.getNet(itP->netIndex).getPin(itP->pinOffset);
00120 if(netPin.getXOffset() != 0 || netPin.getYOffset() != 0)
00121 {
00122 localAllPinsAtCenter = false;
00123 break;
00124 }
00125 }
00126 return(localAllPinsAtCenter);
00127 }