亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? maker.java

?? The ElectricTM VLSI Design System is an open-source Electronic Design Automation (EDA) system that c
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
						} else						{							pList.ports = powerPort;						}						if (nextPort != null)						{							nextPort.last = powerPort;						}					}					// add ground ports					for (GetNetlist.SCNiPort iPort = place.cell.ground; iPort != null; iPort = iPort.next)					{						MakerPowerPort powerPort = new MakerPowerPort();						powerPort.inst = mInst;						powerPort.port = iPort;						if ((mRow.number % 2) != 0)						{							powerPort.xPos = mInst.xPos + mInst.xSize - iPort.xPos;						} else						{							powerPort.xPos = mInst.xPos + iPort.xPos;						}						powerPort.next = null;						powerPort.last = null;						double portYPos = mInst.yPos + SilComp.leafPortYPos((Export)iPort.port);						MakerPower pList;						for (pList = data.ground; pList != null; pList = pList.next)						{							if (pList.yPos == portYPos) break;						}						if (pList == null)						{							pList = new MakerPower();							pList.ports = null;							pList.yPos = portYPos;							MakerPower lastPList = null;							MakerPower nextPList;							for (nextPList = data.ground; nextPList != null; nextPList = nextPList.next)							{								if (portYPos < nextPList.yPos) break;								lastPList = nextPList;							}							pList.next = nextPList;							pList.last = lastPList;							if (lastPList != null)							{								lastPList.next = pList;							} else							{								data.ground = pList;							}							if (nextPList != null)							{								nextPList.last = pList;							}						}						MakerPowerPort lastPort = null;						MakerPowerPort nextPort;						for (nextPort = pList.ports; nextPort != null; nextPort = nextPort.next)						{							if (powerPort.xPos < nextPort.xPos) break;							lastPort = nextPort;						}						powerPort.next = nextPort;						powerPort.last = lastPort;						if (lastPort != null)						{							lastPort.next = powerPort;						} else						{							pList.ports = powerPort;						}						if (nextPort != null)						{							nextPort.last = powerPort;						}					}				} else if (place.cell.type == GetNetlist.FEEDCELL)				{					mInst.ySize = bOffset;				} else if (place.cell.type == GetNetlist.LATERALFEED)				{					Route.RoutePort rPort = (Route.RoutePort)place.cell.ports.port;					mInst.ySize = SilComp.leafPortYPos((Export)rPort.port.port);				} else				{					System.out.println("ERROR - unknown cell type in maker set up");					mInst.ySize = 0;				}				mInst.instance = null;				mInst.flags = 0;				place.cell.tp = mInst;				mInst.next = null;				if (lastMInst != null)				{					lastMInst.next = mInst;				} else				{					mRow.members = mInst;				}				lastMInst = mInst;				// set limits of row				mRow.minX = Math.min(mRow.minX, mInst.xPos);				mRow.maxX = Math.max(mRow.maxX, mInst.xPos + mInst.xSize);				mRow.minY = Math.min(mRow.minY, mInst.yPos);				mRow.maxY = Math.max(mRow.maxY, mInst.yPos + mInst.ySize);			}			data.minX = Math.min(data.minX, mRow.minX);			data.maxX = Math.max(data.maxX, mRow.maxX);			data.minY = Math.min(data.minY, mRow.minY);			data.maxY = Math.max(data.maxY, mRow.maxY);			yPos += tOffset;			mChan = mChan.next;			mChan.minY = yPos;			yPos += mChan.ySize;		}		// create via list for all tracks		for (mChan = data.channels; mChan != null; mChan = mChan.next)		{			// get bottom track and work up			MakerTrack mTrack;			for (mTrack = mChan.tracks; mTrack != null; mTrack = mTrack.next)			{				if (mTrack.next == null) break;			}			for ( ; mTrack != null; mTrack = mTrack.last)			{				yPos = mChan.minY + (mChan.ySize - mTrack.yPos);				mTrack.yPos = yPos;				for (Route.RouteTrackMem mem = mTrack.track.nodes; mem != null; mem = mem.next)				{					MakerNode mNode = new MakerNode();					mNode.vias = null;					mNode.next = mTrack.nodes;					mTrack.nodes = mNode;					MakerVia lastVia = null;					for (Route.RouteChPort chPort = mem.node.firstPort; chPort != null; chPort = chPort.next)					{						MakerVia mVia = new MakerVia();						mVia.xPos = chPort.xPos;						mVia.chPort = chPort;						mVia.instance = null;						mVia.flags = 0;						mVia.xPort = null;						mVia.next = null;						if (lastVia != null)						{							lastVia.next = mVia;						} else						{							mNode.vias = mVia;						}						lastVia = mVia;						// check for power port						if (mVia.chPort.port.place.cell.type == GetNetlist.LEAFCELL)						{							int type = GetNetlist.getLeafPortType((Export)mVia.chPort.port.port.port);							if (type == GetNetlist.PWRPORT || type == GetNetlist.GNDPORT)								mVia.flags |= VIAPOWER;						}						// check for export						for (Route.RouteExport xPort = data.cell.route.exports; xPort != null; xPort = xPort.next)						{							if (xPort.chPort == mVia.chPort)							{								mVia.flags |= VIAEXPORT;								mVia.xPort = xPort;								break;							}						}						data.minX = Math.min(data.minX, chPort.xPos);						data.maxX = Math.max(data.maxX, chPort.xPos);						data.minY = Math.min(data.minY, chPort.xPos);						data.maxY = Math.max(data.maxY, chPort.xPos);					}				}			}		}		return data;	}	/**	 * Method to create the actual layout in the associated VLSI layout tool using	 * the passed layout data.     * @param destLib destination library.	 * @param data pointer to layout data.	 */	private Object createLayout(Library destLib, MakerData data)	{		double rowToTrack = (SilComp.getViaSize() / 2) + SilComp.getMinMetalSpacing();		double trackToTtrack = SilComp.getViaSize() + SilComp.getMinMetalSpacing();		String err = setupForMaker();		if (err != null) return err;		// create new cell		Cell bCell = Cell.makeInstance(destLib, data.cell.name + "{lay}");		if (bCell == null) return "Cannot create leaf cell '" + data.cell.name + "{lay}' in MAKER";		// create instances for cell		for (MakerRow row = data.rows; row != null; row = row.next)		{			boolean flipX = false;			if ((row.number % 2) != 0) flipX = true;			for (MakerInst inst = row.members; inst != null; inst = inst.next)			{				GetNetlist.SCNiTree node = inst.place.cell;				if (node.type == GetNetlist.LEAFCELL)				{					Cell subCell = (Cell)node.np;					Rectangle2D bounds = subCell.getBounds();                    Orientation orient = Orientation.IDENT;//					double wid = inst.xSize;					double hEdge = -bounds.getMinX();					if (flipX)					{                        orient = Orientation.X;//						wid = -wid;						hEdge = bounds.getMaxX();					}					Point2D ctr = new Point2D.Double(inst.xPos + hEdge, inst.yPos - bounds.getMinY());					inst.instance = NodeInst.makeInstance(subCell, ctr, inst.xSize, inst.ySize, bCell, orient, node.name, 0);//					inst.instance = NodeInst.makeInstance(subCell, ctr, wid, inst.ySize, bCell, 0, node.name, 0);					if (inst.instance == null)						return "Cannot create leaf instance '" + node.name+ "' in MAKER";				} else if (node.type == GetNetlist.FEEDCELL)				{					// feed through node					Point2D ctr = new Point2D.Double(inst.xPos + (inst.xSize / 2), inst.yPos + inst.ySize + SilComp.getVertArcWidth() / 2);					inst.instance = NodeInst.makeInstance(layer2Proto, ctr, SilComp.getVertArcWidth(), SilComp.getVertArcWidth(), bCell);					if (inst.instance == null)						return "Cannot create leaf feed in MAKER";				} else if (node.type == GetNetlist.LATERALFEED)				{					// lateral feed node					Point2D ctr = new Point2D.Double(inst.xPos + (inst.xSize / 2), inst.yPos + inst.ySize);					inst.instance = NodeInst.makeInstance(viaProto, ctr, viaProto.getDefWidth(), viaProto.getDefHeight(), bCell);					if (inst.instance == null)						return "Cannot create via in MAKER";				}			}		}		// create vias and vertical tracks		for (MakerChannel chan = data.channels; chan != null; chan = chan.next)		{			for (MakerTrack track = chan.tracks; track != null; track = track.next)			{				for (MakerNode mNode = track.nodes; mNode != null; mNode = mNode.next)				{					for (MakerVia via = mNode.vias; via != null; via = via.next)					{						if ((via.flags & VIAPOWER) != 0)						{							via.instance = NodeInst.makeInstance(layer1Proto, new Point2D.Double(via.xPos, track.yPos),								SilComp.getHorizArcWidth(), SilComp.getHorizArcWidth(), bCell);							if (via.instance == null)								return "Cannot create via in MAKER";							// create vertical power track							MakerInst inst = (MakerInst)via.chPort.port.place.cell.tp;							if (trackLayer1(inst.instance, (PortProto)via.chPort.port.port.port,								via.instance, null, SilComp.getHorizArcWidth(), bCell) == null)							{								return "Cannot create layer2 track in MAKER";							}							continue;						}						// create a via if next via (if it exists) is farther						// than the track to track spacing, else create a layer2 node						if (via.next != null && (via.next.flags & VIAPOWER) == 0)						{							if (Math.abs(via.next.xPos - via.xPos) < trackToTtrack)							{								if ((via.flags & VIAEXPORT) != 0)								{									via.next.flags |= VIASPECIAL;								} else								{									via.flags |= VIASPECIAL;								}							}						}						if ((via.flags & VIASPECIAL) != 0)						{							via.instance = NodeInst.makeInstance(layer2Proto, new Point2D.Double(via.xPos, track.yPos),								SilComp.getVertArcWidth(), SilComp.getVertArcWidth(), bCell);							if (via.instance == null)								return "Cannot create leaf feed in MAKER";						} else						{							via.instance = NodeInst.makeInstance(viaProto, new Point2D.Double(via.xPos, track.yPos),								viaProto.getDefWidth(), viaProto.getDefHeight(), bCell);							if (via.instance == null)								return "Cannot create via in MAKER";						}						// create vertical track						GetNetlist.SCNiTree node = via.chPort.port.place.cell;						if (node.type == GetNetlist.LEAFCELL)						{							MakerInst inst = (MakerInst)node.tp;							if (trackLayer2(inst.instance, (PortProto)via.chPort.port.port.port,								via.instance, null, SilComp.getVertArcWidth(), bCell) == null)							{								return "Cannot create layer2 track in MAKER";							}						} else if (node.type == GetNetlist.FEEDCELL ||							node.type == GetNetlist.LATERALFEED)						{							MakerInst inst = (MakerInst)node.tp;							if (trackLayer2(inst.instance, null,								via.instance, null, SilComp.getVertArcWidth(), bCell) == null)							{								return "Cannot create layer2 track in MAKER";							}						}					}				}			}		}		// create horizontal tracks		for (MakerChannel chan = data.channels; chan != null; chan = chan.next)		{			for (MakerTrack track = chan.tracks; track != null; track = track.next)			{				for (MakerNode mNode = track.nodes; mNode != null; mNode = mNode.next)				{					for (MakerVia via = mNode.vias; via != null; via = via.next)					{						if (via.next != null)						{							if ((via.flags & VIASPECIAL) != 0)							{								if (Math.abs(via.next.xPos - via.xPos) < trackToTtrack)								{									if (trackLayer2(via.instance, null,										via.next.instance, null, SilComp.getVertArcWidth(), bCell) == null)									{										return "Cannot create layer1 track in MAKER";									}								}							} else							{								if ((via.flags & VIAPOWER) == 0 &&									(via.next.flags & VIAPOWER) == 0 &&									(via.next.xPos - via.xPos) < trackToTtrack)								{									if (trackLayer2(via.instance, null,										via.next.instance, null, SilComp.getVertArcWidth(), bCell) == null)									{										return "Cannot create layer1 track in MAKER";									}								}								for (MakerVia via2 = via.next; via2 != null; via2 = via2.next)								{									if ((via2.flags & VIASPECIAL) != 0) continue;									if (trackLayer1(via.instance, null, via2.instance, null,										SilComp.getHorizArcWidth(), bCell) == null)									{										return "Cannot create layer1 track in MAKER";									}									break;								}							}						}					}				}			}		}		// create stitches and lateral feeds		for(Place.RowList rlist : data.cell.placement.theRows)		{			for (Place.NBPlace place = rlist.start; place != null; place = place.next)			{				if (place.cell.type == GetNetlist.STITCH)				{					Route.RoutePort rPort = (Route.RoutePort)place.cell.ports.port;					MakerInst inst = (MakerInst)rPort.place.cell.tp;					NodeInst inst1 = inst.instance;					PortProto port1 = (PortProto)rPort.port.port;					rPort = (Route.RoutePort)place.cell.ports.next.port;					inst = (MakerInst)rPort.place.cell.tp;					NodeInst inst2 = inst.instance;					PortProto port2 = (PortProto)rPort.port.port;					if (trackLayer1(inst1, port1, inst2, port2,						SilComp.getHorizArcWidth(), bCell) == null)					{						return "Cannot create layer1 track in MAKER";					}				} else if (place.cell.type == GetNetlist.LATERALFEED)				{					Route.RoutePort rPort = (Route.RoutePort)place.cell.ports.port;					MakerInst inst = (MakerInst)rPort.place.cell.tp;					NodeInst inst1 = inst.instance;					PortProto port1 = (PortProto)rPort.port.port;					inst = (MakerInst)place.cell.tp;					NodeInst inst2 = inst.instance;					if (trackLayer1(inst1, port1, inst2, null,						SilComp.getHorizArcWidth(), bCell) == null)					{						return "Cannot create layer2 track in MAKER";					}				}			}		}		// export ports		for (MakerChannel chan = data.channels; chan != null; chan = chan.next)		{			for (MakerTrack track = chan.tracks; track != null; track = track.next)			{				for (MakerNode mNode = track.nodes; mNode != null; mNode = mNode.next)				{					for (MakerVia via = mNode.vias; via != null; via = via.next)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线不卡一区二区| 久久久国产精华| 亚洲免费电影在线| 97久久超碰国产精品| 国产精品成人在线观看| 在线观看欧美精品| 日本不卡视频一二三区| 欧美精品一区在线观看| 处破女av一区二区| 亚洲精选一二三| 欧美日韩久久久久久| 首页欧美精品中文字幕| 精品对白一区国产伦| 福利视频网站一区二区三区| 亚洲天堂精品视频| 欧美精选一区二区| 国产精品一区二区三区四区| 综合av第一页| 欧美一区二区三区系列电影| 国产成人av一区二区三区在线| 国产精品久久久一区麻豆最新章节| 99精品欧美一区| 青青草国产成人99久久| 国产调教视频一区| 在线亚洲一区观看| 国产制服丝袜一区| 亚洲男同1069视频| 欧美电影免费观看高清完整版在 | 99re这里只有精品6| 亚洲自拍都市欧美小说| 欧美mv日韩mv| 91成人看片片| 国产福利精品一区二区| 亚洲v中文字幕| 欧美激情一区二区三区四区| 欧美三级蜜桃2在线观看| 国产麻豆成人传媒免费观看| 亚洲伊人伊色伊影伊综合网| 久久综合九色综合欧美就去吻| 色综合天天做天天爱| 精品一区二区三区在线播放视频| 专区另类欧美日韩| 精品国产成人系列| 欧美蜜桃一区二区三区| 成人天堂资源www在线| 热久久久久久久| 激情综合亚洲精品| 伊人婷婷欧美激情| 久久精品人人做| 欧美一区二区在线播放| 91浏览器在线视频| 国产久卡久卡久卡久卡视频精品| 午夜影院久久久| 亚洲欧美激情在线| 国产精品午夜在线观看| 日韩欧美另类在线| 在线成人高清不卡| 欧美三级资源在线| 色香蕉久久蜜桃| 91小视频免费观看| 丁香天五香天堂综合| 国产一区二区毛片| 国产在线精品国自产拍免费| 青青草原综合久久大伊人精品优势| 一二三区精品福利视频| 亚洲三级电影网站| 国产农村妇女毛片精品久久麻豆| 精品成人一区二区| 亚洲精品在线免费播放| 精品少妇一区二区三区日产乱码| 日韩一区二区视频| 欧美一区二区三级| 日韩一区二区三区在线视频| 91精品国产一区二区三区香蕉| 精品视频999| 9191国产精品| 91精品国产综合久久久蜜臀粉嫩 | 26uuu另类欧美亚洲曰本| 69堂成人精品免费视频| 欧美日本免费一区二区三区| 欧美色综合久久| 这里只有精品视频在线观看| 在线成人免费视频| 欧美mv日韩mv国产网站| 26uuu另类欧美亚洲曰本| 国产亚洲美州欧州综合国| 亚洲精品一区二区三区精华液 | 91精品国产欧美一区二区成人| 欧美日本韩国一区二区三区视频| 欧美人伦禁忌dvd放荡欲情| 欧美精品v国产精品v日韩精品 | 日韩亚洲欧美成人一区| 欧美精品一区二区三区蜜桃视频| 制服丝袜一区二区三区| 日韩精品一区二| 国产日本欧美一区二区| 亚洲欧美日韩在线| 午夜电影网一区| 日韩国产在线一| 精品亚洲porn| 91亚洲精品一区二区乱码| 欧美成人精精品一区二区频| 国产午夜亚洲精品午夜鲁丝片| 日本一二三四高清不卡| 亚洲精选视频在线| 精品在线免费视频| yourporn久久国产精品| 91久久免费观看| 欧美va亚洲va香蕉在线| 中文成人综合网| 亚洲国产精品尤物yw在线观看| 青青草国产成人99久久| 成人性生交大片免费看中文| 欧美日韩一区二区三区四区五区 | 久久蜜臀精品av| 亚洲精品国产一区二区精华液| 日韩精品欧美成人高清一区二区| 国产一区二区视频在线| 色婷婷久久99综合精品jk白丝 | 欧美日韩高清一区二区| 久久久www免费人成精品| 夜夜爽夜夜爽精品视频| 麻豆国产91在线播放| 色哟哟精品一区| 欧美成人a∨高清免费观看| 中文字幕亚洲电影| 免费看黄色91| 色悠悠久久综合| 久久―日本道色综合久久| 一区二区在线观看不卡| 国产伦精品一区二区三区免费| 精品视频在线看| 亚洲视频在线观看一区| 韩国精品久久久| 欧美福利一区二区| 一区二区三区免费观看| 国产成人精品免费在线| 日韩欧美在线综合网| 亚洲亚洲精品在线观看| www.亚洲在线| 久久久久国产精品免费免费搜索| 亚洲h动漫在线| 欧美中文字幕一区二区三区 | 欧美日韩夫妻久久| 亚洲视频香蕉人妖| 国产成人精品aa毛片| 欧美成va人片在线观看| 性做久久久久久久久| 色av一区二区| 中文字幕中文字幕在线一区 | 国产午夜亚洲精品午夜鲁丝片| 日本va欧美va欧美va精品| 欧美无砖砖区免费| 亚洲欧洲日韩在线| 成人app在线| 国产精品热久久久久夜色精品三区 | 一区二区三区日韩欧美| eeuss国产一区二区三区| 性感美女久久精品| 欧美日韩一区中文字幕| 一区二区三区在线视频播放| 一本到不卡精品视频在线观看 | 亚洲欧美日韩国产手机在线| 国产成人鲁色资源国产91色综 | 亚洲蜜臀av乱码久久精品| 成人一区二区三区在线观看| 国产欧美日韩在线视频| 国产91丝袜在线观看| 久久久久久97三级| 国产精品18久久久久久久网站| 久久久久久久久久电影| 国产69精品久久777的优势| 欧美经典一区二区| 成人av在线播放网址| 欧美国产一区二区在线观看 | 色8久久精品久久久久久蜜| 亚洲欧美色图小说| 欧美日韩另类一区| 视频一区免费在线观看| 日韩免费成人网| 国产成人综合视频| 国产精品久久久久婷婷二区次| 成人av小说网| 一区二区三区免费在线观看| 欧美美女一区二区| 卡一卡二国产精品| 久久亚洲精品小早川怜子| 成人黄色电影在线| 亚洲综合色在线| 欧美大片免费久久精品三p| 国产美女一区二区三区| 亚洲欧美自拍偷拍色图| 日本丶国产丶欧美色综合| 天堂在线一区二区| 久久先锋影音av| 色婷婷精品久久二区二区蜜臂av| 水蜜桃久久夜色精品一区的特点| 精品国产99国产精品| 97久久超碰国产精品电影| 亚洲成av人片在线观看|