Update to Qt 5, requires cmake 2.8.9. New placer: Etesian.
Update to Qt 5:
* Change: Now requires at least cmake 2.8.9.
* Change: CMakeLists.txt needs small changes. Qt modules must be found
one by one (Core, Gui, Widgets). Must add "set(CMAKE_AUTOMOC ON)"
in the top file and replace "qt4" prefix in macros by "qt5".
Added simpler macro "setup_qt()" in FindBootstrap.cmake.
* Change: No longer need to include <QGtkStyle> is is choosen by default
according to the current desktop environment.
* Change: In <hurricane>, In HApplication, launch ExceptionWidget when
a std::exception is catched instead of silently discarting it.
New placer Tool: Etesian
* New: <etesian> analytical placer. Encapsulate Coloquinte from
Gabriel Gouvine.
* New: in <documentation>, add stub demonstration ToolEngine <smurf>.
Needs to be commented.
Miscellaneous:
* New: in <boostrap> and <unicorn>, added support for Etesian, the new
analytic placer. The tool itself will be added in the next commit.
* Bug: in <CellWidget>, when shifting the display buffer, we no longer
can copy the buffer on itself (we should never have). Now go through
a temporary one (PlaneId::AutoCopy) which is added to the
DrawingPlanes. Affect "goLeft()" and "goUp()".
* Bug: In <CellWidget>, remove the WA_PaintOnScreen flag/attribute.
When it's on, no PaintEvent is transmitted to the CellWidget
when it's the central widget of the <CellViewer> (QMainWindow).
It's something I still don't understand from the doc of Qt.
* Change: In <AreaCommand>, use the PlaneId enumeration instead of a
anonymous numerical index.
* Change: In <HApplication>, no longer catch and silently discard
standartd exceptions but launch the ExceptionWidget...
Suppress the now deprecated constructor with "Type" argument.
* Change: In <SelectionModel>, the "reset()" method is deprecated in
Qt5, instead enclose the "clear()" by a "beginResetModel()" and
"endResetModel()" pair.
* New: In <crlcore>, add support for ISPD05 benchmarks (in Bookshelf
format). Forked from ISPD04 and not finished yet.
* Change: In <Mauka>, distinguish the Action string identifier from
<Etesian>
* New: In <unicorn>, add entry for ISPD05 loader. Add entry for
<Etesian> analytic placer.
2014-03-22 05:50:36 -05:00
|
|
|
// -*- C++ -*-
|
|
|
|
//
|
|
|
|
// This file is part of the Coriolis Software.
|
|
|
|
// Copyright (c) UPMC/LIP6 2014-2014, All Rights Reserved
|
|
|
|
//
|
|
|
|
// +-----------------------------------------------------------------+
|
|
|
|
// | C O R I O L I S |
|
|
|
|
// | E t e s i a n - A n a l y t i c P l a c e r |
|
|
|
|
// | |
|
|
|
|
// | Author : Jean-Paul Chaput |
|
|
|
|
// | E-mail : Jean-Paul.Chaput@lip6.fr |
|
|
|
|
// | =============================================================== |
|
|
|
|
// | C++ Header : "./GraphicEtesianEngine.cpp" |
|
|
|
|
// +-----------------------------------------------------------------+
|
|
|
|
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <boost/bind.hpp>
|
|
|
|
#include <QAction>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QMenuBar>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <hurricane/Warning.h>
|
|
|
|
#include <hurricane/Error.h>
|
|
|
|
#include <hurricane/Breakpoint.h>
|
|
|
|
#include <hurricane/DebugSession.h>
|
|
|
|
#include <hurricane/Go.h>
|
|
|
|
#include <hurricane/Net.h>
|
|
|
|
#include <hurricane/Cell.h>
|
|
|
|
#include <hurricane/UpdateSession.h>
|
|
|
|
#include <hurricane/viewer/Graphics.h>
|
|
|
|
#include <hurricane/viewer/CellWidget.h>
|
|
|
|
#include <hurricane/viewer/CellViewer.h>
|
|
|
|
#include <hurricane/viewer/ControllerWidget.h>
|
|
|
|
#include <crlcore/Utilities.h>
|
|
|
|
#include <crlcore/AllianceFramework.h>
|
|
|
|
#include <etesian/GraphicEtesianEngine.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace Etesian {
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using Hurricane::Error;
|
|
|
|
using Hurricane::Warning;
|
|
|
|
using Hurricane::Breakpoint;
|
|
|
|
using Hurricane::DebugSession;
|
|
|
|
using Hurricane::UpdateSession;
|
|
|
|
using Hurricane::Point;
|
|
|
|
using Hurricane::Net;
|
|
|
|
using Hurricane::Graphics;
|
|
|
|
using Hurricane::ColorScale;
|
|
|
|
using Hurricane::ControllerWidget;
|
|
|
|
using CRL::Catalog;
|
|
|
|
using CRL::AllianceFramework;
|
|
|
|
|
|
|
|
|
|
|
|
size_t GraphicEtesianEngine::_references = 0;
|
|
|
|
GraphicEtesianEngine* GraphicEtesianEngine::_singleton = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
EtesianEngine* GraphicEtesianEngine::createEngine ()
|
|
|
|
{
|
|
|
|
Cell* cell = getCell ();
|
|
|
|
|
|
|
|
EtesianEngine* etesian = EtesianEngine::get( cell );
|
|
|
|
if (not etesian) {
|
|
|
|
etesian = EtesianEngine::create( cell );
|
First barebone implementation of Etesian. Support for ISPD05 benchmark.
Details:
* New: In <vlsispad/utilities>, new objet Dots for displaying a kind
of progress bar.
* Change: In <vlsisapd/bookshelf>, keywords are now case-insensitive.
Added a "strict syntax" option (to be disabled for ISPD05).
* New: First working implementation of Etesian, at least for ISPD05
"bigblue1".
* Change: In <hurricane>, in Cell::flattenNets(), no longer display
a warning if an instance is unplaced, this does not make sense
when the circuit is not placed.
* New: In <crlcore>, Added translator for ISPD05 bookshelf, the
circuit is *not* placed, unlike in ISPD04 and terminal nodes
*are* true cells.
* New: In <unicorn>, added entry in import cell for ISPD05 benchmarks.
2014-03-24 18:59:12 -05:00
|
|
|
etesian->setCellWidget( _viewer->getCellWidget() );
|
Update to Qt 5, requires cmake 2.8.9. New placer: Etesian.
Update to Qt 5:
* Change: Now requires at least cmake 2.8.9.
* Change: CMakeLists.txt needs small changes. Qt modules must be found
one by one (Core, Gui, Widgets). Must add "set(CMAKE_AUTOMOC ON)"
in the top file and replace "qt4" prefix in macros by "qt5".
Added simpler macro "setup_qt()" in FindBootstrap.cmake.
* Change: No longer need to include <QGtkStyle> is is choosen by default
according to the current desktop environment.
* Change: In <hurricane>, In HApplication, launch ExceptionWidget when
a std::exception is catched instead of silently discarting it.
New placer Tool: Etesian
* New: <etesian> analytical placer. Encapsulate Coloquinte from
Gabriel Gouvine.
* New: in <documentation>, add stub demonstration ToolEngine <smurf>.
Needs to be commented.
Miscellaneous:
* New: in <boostrap> and <unicorn>, added support for Etesian, the new
analytic placer. The tool itself will be added in the next commit.
* Bug: in <CellWidget>, when shifting the display buffer, we no longer
can copy the buffer on itself (we should never have). Now go through
a temporary one (PlaneId::AutoCopy) which is added to the
DrawingPlanes. Affect "goLeft()" and "goUp()".
* Bug: In <CellWidget>, remove the WA_PaintOnScreen flag/attribute.
When it's on, no PaintEvent is transmitted to the CellWidget
when it's the central widget of the <CellViewer> (QMainWindow).
It's something I still don't understand from the doc of Qt.
* Change: In <AreaCommand>, use the PlaneId enumeration instead of a
anonymous numerical index.
* Change: In <HApplication>, no longer catch and silently discard
standartd exceptions but launch the ExceptionWidget...
Suppress the now deprecated constructor with "Type" argument.
* Change: In <SelectionModel>, the "reset()" method is deprecated in
Qt5, instead enclose the "clear()" by a "beginResetModel()" and
"endResetModel()" pair.
* New: In <crlcore>, add support for ISPD05 benchmarks (in Bookshelf
format). Forked from ISPD04 and not finished yet.
* Change: In <Mauka>, distinguish the Action string identifier from
<Etesian>
* New: In <unicorn>, add entry for ISPD05 loader. Add entry for
<Etesian> analytic placer.
2014-03-22 05:50:36 -05:00
|
|
|
} else
|
|
|
|
cerr << Warning( "%s already has a Etesian engine.", getString(cell).c_str() ) << endl;
|
|
|
|
|
|
|
|
return etesian;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
EtesianEngine* GraphicEtesianEngine::getForFramework ()
|
|
|
|
{
|
|
|
|
// Currently, only one framework is avalaible: Alliance.
|
|
|
|
|
|
|
|
EtesianEngine* etesian = EtesianEngine::get( getCell() );
|
|
|
|
if (etesian) return etesian;
|
|
|
|
|
|
|
|
etesian = createEngine();
|
|
|
|
|
|
|
|
if (not etesian)
|
|
|
|
throw Error( "Failed to create Etesian engine on %s.", getString(getCell()).c_str() );
|
|
|
|
|
|
|
|
return etesian;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GraphicEtesianEngine::place ()
|
|
|
|
{
|
|
|
|
EtesianEngine* etesian = EtesianEngine::get( getCell() );
|
|
|
|
if (not etesian) {
|
|
|
|
etesian = createEngine();
|
|
|
|
//throw Error( "EtesianEngine not created yet, run the global router first." );
|
|
|
|
}
|
|
|
|
//if (cmess1.enabled()) etesian->printConfiguration();
|
|
|
|
|
|
|
|
emit cellPreModificated();
|
|
|
|
_viewer->clearToolInterrupt();
|
First barebone implementation of Etesian. Support for ISPD05 benchmark.
Details:
* New: In <vlsispad/utilities>, new objet Dots for displaying a kind
of progress bar.
* Change: In <vlsisapd/bookshelf>, keywords are now case-insensitive.
Added a "strict syntax" option (to be disabled for ISPD05).
* New: First working implementation of Etesian, at least for ISPD05
"bigblue1".
* Change: In <hurricane>, in Cell::flattenNets(), no longer display
a warning if an instance is unplaced, this does not make sense
when the circuit is not placed.
* New: In <crlcore>, Added translator for ISPD05 bookshelf, the
circuit is *not* placed, unlike in ISPD04 and terminal nodes
*are* true cells.
* New: In <unicorn>, added entry in import cell for ISPD05 benchmarks.
2014-03-24 18:59:12 -05:00
|
|
|
etesian->resetPlacement();
|
|
|
|
emit cellPostModificated();
|
|
|
|
|
|
|
|
emit cellPostModificated();
|
Update to Qt 5, requires cmake 2.8.9. New placer: Etesian.
Update to Qt 5:
* Change: Now requires at least cmake 2.8.9.
* Change: CMakeLists.txt needs small changes. Qt modules must be found
one by one (Core, Gui, Widgets). Must add "set(CMAKE_AUTOMOC ON)"
in the top file and replace "qt4" prefix in macros by "qt5".
Added simpler macro "setup_qt()" in FindBootstrap.cmake.
* Change: No longer need to include <QGtkStyle> is is choosen by default
according to the current desktop environment.
* Change: In <hurricane>, In HApplication, launch ExceptionWidget when
a std::exception is catched instead of silently discarting it.
New placer Tool: Etesian
* New: <etesian> analytical placer. Encapsulate Coloquinte from
Gabriel Gouvine.
* New: in <documentation>, add stub demonstration ToolEngine <smurf>.
Needs to be commented.
Miscellaneous:
* New: in <boostrap> and <unicorn>, added support for Etesian, the new
analytic placer. The tool itself will be added in the next commit.
* Bug: in <CellWidget>, when shifting the display buffer, we no longer
can copy the buffer on itself (we should never have). Now go through
a temporary one (PlaneId::AutoCopy) which is added to the
DrawingPlanes. Affect "goLeft()" and "goUp()".
* Bug: In <CellWidget>, remove the WA_PaintOnScreen flag/attribute.
When it's on, no PaintEvent is transmitted to the CellWidget
when it's the central widget of the <CellViewer> (QMainWindow).
It's something I still don't understand from the doc of Qt.
* Change: In <AreaCommand>, use the PlaneId enumeration instead of a
anonymous numerical index.
* Change: In <HApplication>, no longer catch and silently discard
standartd exceptions but launch the ExceptionWidget...
Suppress the now deprecated constructor with "Type" argument.
* Change: In <SelectionModel>, the "reset()" method is deprecated in
Qt5, instead enclose the "clear()" by a "beginResetModel()" and
"endResetModel()" pair.
* New: In <crlcore>, add support for ISPD05 benchmarks (in Bookshelf
format). Forked from ISPD04 and not finished yet.
* Change: In <Mauka>, distinguish the Action string identifier from
<Etesian>
* New: In <unicorn>, add entry for ISPD05 loader. Add entry for
<Etesian> analytic placer.
2014-03-22 05:50:36 -05:00
|
|
|
etesian->place();
|
|
|
|
emit cellPostModificated();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GraphicEtesianEngine::postEvent ()
|
|
|
|
{
|
|
|
|
static unsigned int count = 0;
|
|
|
|
|
|
|
|
if (not (count++ % 500)) {
|
|
|
|
QApplication::processEvents();
|
|
|
|
|
|
|
|
// if (_viewer->isToolInterrupted()) {
|
|
|
|
// EtesianEngine* etesian = EtesianEngine::get( getCell() );
|
|
|
|
// if (etesian) etesian->setInterrupt( true );
|
|
|
|
// _viewer->clearToolInterrupt();
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GraphicEtesianEngine::addToMenu ( CellViewer* viewer )
|
|
|
|
{
|
|
|
|
assert( _viewer == NULL );
|
|
|
|
|
|
|
|
_viewer = viewer;
|
|
|
|
|
|
|
|
QMenu* prMenu = _viewer->findChild<QMenu*>("viewer.menuBar.placeAndRoute");
|
|
|
|
QMenu* stepMenu = _viewer->findChild<QMenu*>("viewer.menuBar.placeAndRoute.stepByStep");
|
|
|
|
if (prMenu == NULL) {
|
|
|
|
QMenuBar* menuBar = _viewer->findChild<QMenuBar*>("viewer.menuBar");
|
|
|
|
if (menuBar == NULL) {
|
|
|
|
cerr << Warning( "GraphicEtesianEngine::addToMenu() - No MenuBar in parent widget." ) << endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
prMenu = menuBar->addMenu( tr("P&&R") );
|
|
|
|
prMenu->setObjectName( "viewer.menuBar.placeAndRoute" );
|
|
|
|
|
|
|
|
stepMenu = prMenu->addMenu( tr("&Step by Step") );
|
|
|
|
stepMenu->setObjectName( "viewer.menuBar.placeAndRoute.stepByStep" );
|
|
|
|
|
|
|
|
prMenu->addSeparator();
|
|
|
|
}
|
|
|
|
|
|
|
|
QAction* placeAction = _viewer->findChild<QAction*>("viewer.menuBar.placeAndRoute.etesianPlace");
|
|
|
|
if (placeAction)
|
|
|
|
cerr << Warning( "GraphicEtesianEngine::addToMenu() - Etesian detailed router already hooked in." ) << endl;
|
|
|
|
else {
|
|
|
|
QAction* placeAction = new QAction ( tr("Etesian - &Place"), _viewer );
|
|
|
|
placeAction->setObjectName( "viewer.menuBar.placeAndRoute.etesianPlace" );
|
|
|
|
placeAction->setStatusTip ( tr("Place the design") );
|
|
|
|
placeAction->setVisible ( true );
|
|
|
|
prMenu->addAction( placeAction );
|
|
|
|
|
|
|
|
connect( placeAction , SIGNAL(triggered()), this, SLOT(place ()) );
|
|
|
|
}
|
|
|
|
|
|
|
|
connect( this, SIGNAL(cellPreModificated ()), _viewer->getCellWidget(), SLOT(cellPreModificate ()) );
|
|
|
|
connect( this, SIGNAL(cellPostModificated()), _viewer->getCellWidget(), SLOT(cellPostModificate()) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const Name& GraphicEtesianEngine::getName () const
|
|
|
|
{ return EtesianEngine::staticGetName(); }
|
|
|
|
|
|
|
|
|
|
|
|
Cell* GraphicEtesianEngine::getCell ()
|
|
|
|
{
|
|
|
|
if (_viewer == NULL) {
|
|
|
|
throw Error( "<b>Etesian:</b> GraphicEtesianEngine not bound to any Viewer." );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_viewer->getCell() == NULL) {
|
|
|
|
throw Error( "<b>Etesian:</b> No Cell is loaded into the Viewer." );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _viewer->getCell();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GraphicEtesianEngine* GraphicEtesianEngine::grab ()
|
|
|
|
{
|
|
|
|
if (not _references) {
|
|
|
|
_singleton = new GraphicEtesianEngine ();
|
|
|
|
}
|
|
|
|
_references++;
|
|
|
|
|
|
|
|
return _singleton;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
size_t GraphicEtesianEngine::release ()
|
|
|
|
{
|
|
|
|
--_references;
|
|
|
|
if (not _references) {
|
|
|
|
delete _singleton;
|
|
|
|
_singleton = NULL;
|
|
|
|
}
|
|
|
|
return _references;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GraphicEtesianEngine::GraphicEtesianEngine ()
|
|
|
|
: GraphicTool()
|
|
|
|
, _viewer (NULL)
|
|
|
|
{
|
|
|
|
// addDrawGo( "Knik::Edge" , GraphicKnikEngine::initKnikEdges , GraphicKnikEngine::drawKnikEdges );
|
|
|
|
// addDrawGo( "Knik::Vertex" , GraphicKnikEngine::initKnikVertex, GraphicKnikEngine::drawKnikVertex );
|
|
|
|
// addDrawGo( "Katabatic::Ac" , initKatabaticAc , drawKatabaticAc );
|
|
|
|
// addDrawGo( "Katabatic::GCell", initKatabaticGCell, drawKatabaticGCell );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GraphicEtesianEngine::~GraphicEtesianEngine ()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
|
|
} // Etesian namespace.
|