// -*- mode: C++; explicit-buffer-name: "Dijkstra.cpp" -*- // // This file is part of the Coriolis Software. // Copyright (c) UPMC 2016-2016, All Rights Reserved // // +-----------------------------------------------------------------+ // | C O R I O L I S | // | A n a b a t i c - Global Routing Toolbox | // | | // | Author : Jean-Paul CHAPUT | // | E-mail : Jean-Paul.Chaput@lip6.fr | // | =============================================================== | // | C++ Module : "./anabatic/Dijkstra.cpp" | // +-----------------------------------------------------------------+ #include #include "hurricane/Error.h" #include "hurricane/Net.h" #include "hurricane/RoutingPad.h" #include "hurricane/Horizontal.h" #include "hurricane/Vertical.h" #include "hurricane/UpdateSession.h" #include "hurricane/DebugSession.h" #include "crlcore/Utilities.h" #include "anabatic/AnabaticEngine.h" #include "anabatic/Dijkstra.h" namespace Anabatic { using std::cerr; using std::endl; using std::numeric_limits; using Hurricane::ForEachIterator; using Hurricane::Error; using Hurricane::Component; using Hurricane::Horizontal; using Hurricane::Vertical; using Hurricane::RoutingPad; using Hurricane::UpdateSession; using Hurricane::DebugSession; // ------------------------------------------------------------------- // Class : "Anabatic::Vertex". DbU::Unit Vertex::unreached = std::numeric_limits::max(); bool Vertex::hasValidStamp () const { return _stamp == getAnabatic()->getStamp(); } string Vertex::_getString () const { if (not _gcell) { string s = ""; return s; } string s = "getXMin()) + "," + DbU::getValueString(_gcell->getYMin()) + ")" + " connexId:" + getString(_connexId) + " d:" + ((_distance == unreached) ? "unreached" : DbU::getValueString(_distance) ) + "+" + getString(_branchId) + " stamp:" + (hasValidStamp() ? "valid" : "outdated") + " from:" + ((_from) ? "set" : "NULL") + ">"; return s; } void Vertex::notify ( Vertex* vertex, unsigned int flags ) { //Vertex* vertex = getOwner(); cdebug_log(111,0) << "Vertex::notify() " << vertex << endl; // Take into account the GCell modification here. } // ------------------------------------------------------------------- // Class : "Anabatic::Dijkstra". Dijkstra::Mode::~Mode () { } string Dijkstra::Mode::_getTypeName () const { return "Anabatic::Dijkstra::Mode"; } string Dijkstra::Mode::_getString () const { string s = ""; s += (_flags & Standart ) ? 'S' : '-'; s += (_flags & Monotonic) ? 'M' : '-'; return s; } DbU::Unit Dijkstra::_distance ( const Vertex* a, const Vertex* b, const Edge* e ) { DbU::Unit distance = a->getDistance() + e->getDistance(); // Edge* aFrom = a->getFrom(); // if (aFrom) { // distance += (aFrom->isHorizontal() xor e->isHorizontal()) ? 3.0 : 0.0; // } return distance; } bool Dijkstra::isRestricted ( const Vertex* v1, const Vertex* v2 ) const { bool restricted = true; GCell* c1 = v1->getGCell(); GCell* c2 = v2->getGCell(); // Check from GCell 1 if ( c1->isNorth(c2) ) { if ( !v1->isNRestricted() ) restricted = false; } else if ( c1->isSouth(c2) ) { if ( !v1->isSRestricted() ) restricted = false; } else if ( c1->isEast (c2) ) { if ( !v1->isERestricted() ) restricted = false; } else if ( c1->isWest (c2) ) { if ( !v1->isWRestricted() ) restricted = false; } else { cerr << Error( "GCells are not side by side." ) << endl; return true; } if (restricted) return true; else { // Check from GCell 2 if ( c2->isNorth(c1) ) { if ( v2->isNRestricted() ) return true; else return false; } else if ( c2->isSouth(c1) ) { if ( v2->isSRestricted() ) return true; else return false; } else if ( c2->isEast (c1) ) { if ( v2->isERestricted() ) return true; else return false; } else if ( c2->isWest (c1) ) { if ( v2->isWRestricted() ) return true; else return false; } else { cerr << Error( "GCells are not side by side." ) << endl; return true; } } } Dijkstra::Dijkstra ( AnabaticEngine* anabatic ) : _anabatic (anabatic) , _vertexes () , _distanceCb (_distance) , _mode (Mode::Standart) , _net (NULL) , _stamp (-1) , _sources () , _targets () , _searchArea () , _connectedsId(-1) , _queue () { const vector& gcells = _anabatic->getGCells(); for ( GCell* gcell : gcells ) { _vertexes.push_back( new Vertex (gcell) ); } } Dijkstra::~Dijkstra () { for ( Vertex* vertex : _vertexes ) delete vertex; } void Dijkstra::load ( Net* net ) { _net = net; DebugSession::open( _net, 112, 120 ); cdebug_log(112,1) << "Dijkstra::load() " << _net << endl; _sources.clear(); _targets.clear(); _searchArea.makeEmpty(); _stamp = _anabatic->incStamp(); vector rps; for ( RoutingPad* rp : _net->getRoutingPads() ) rps.push_back( rp ); for ( RoutingPad* rp : rps ) { Box rpBb = rp->getBoundingBox(); Point center = rpBb.getCenter(); GCell* gcell = _anabatic->getGCellUnder( center ); if (not gcell) { cerr << Error( "Dijkstra::load(): %s of %s is not under any GCell.\n" " It will be ignored ans the routing will be incomplete." , getString(rp ).c_str() , getString(_net).c_str() ) << endl; continue; } _searchArea.merge( gcell->getBoundingBox() ); Vertex* vertex = gcell->getObserver(GCell::Observable::Vertex); if (vertex->getConnexId() < 0) { vertex->setDistance( Vertex::unreached ); vertex->setStamp ( _stamp ); vertex->setConnexId( _targets.size() ); vertex->setBranchId( 0 ); vertex->setFrom ( NULL ); _targets.insert( vertex ); cdebug_log(112,0) << "Add Vertex: " << vertex << endl; } Contact* gcontact = vertex->getGContact( _net ); rp->getBodyHook()->detach(); rp->getBodyHook()->attach( gcontact->getBodyHook() ); } cdebug_log(112,0) << "Search area: " << _searchArea << endl; cdebug_tabw(112,-1); DebugSession::close(); } void Dijkstra::_selectFirstSource () { if (_targets.empty()) { #if 0 cparanoid << Error( "Dijkstra::_selectFirstSource(): %s has no vertexes to route, ignored." , getString(_net).c_str() ) << endl; #endif return; } Vertex* firstSource = NULL; if (_mode & Mode::Monotonic) { if (_targets.size() == 2) { auto ivertex = _targets.begin(); Vertex* v1 = *ivertex; Vertex* v2 = *(++ivertex); firstSource = (v1->getCenter().getX() <= v2->getCenter().getY()) ? v1 : v2; } else { cerr << Error( "Dijkstra::_selectFirstSource(): %s cannot be routed in monotonic mode.\n" " Must have exactly two terminals (%u), revert to Standart." , getString(_net).c_str() , _targets.size() ) << endl; _mode = Mode::Standart; } } if (not firstSource) { // Standart routing. Point areaCenter = _searchArea.getCenter(); auto ivertex = _targets.begin(); firstSource = *ivertex++; DbU::Unit minDistance = areaCenter.manhattanDistance( firstSource->getCenter() ); for ( ; ivertex != _targets.end() ; ++ivertex ) { DbU::Unit distance = areaCenter.manhattanDistance( (*ivertex)->getCenter() ); if (distance < minDistance) { minDistance = distance; firstSource = *ivertex; } } } _targets.erase ( firstSource ); _sources.insert( firstSource ); cdebug_log(112,0) << "Dijkstra::_selectFirstSource() " << *_sources.begin() << endl; } bool Dijkstra::_propagate ( Flags enabledSides ) { cdebug_log(112,1) << "Dijkstra::_propagate() " << _net << endl; while ( not _queue.empty() ) { _queue.dump(); Vertex* current = _queue.top(); _queue.pop(); if ((current->getConnexId() == _connectedsId) or (current->getConnexId() < 0)) { for ( Edge* edge : current->getGCell()->getEdges() ) { if (edge == current->getFrom()) continue; GCell* gneighbor = edge->getOpposite(current->getGCell()); Vertex* vneighbor = gneighbor->getObserver(GCell::Observable::Vertex); if (not _searchArea.contains(vneighbor->getCenter())) continue; cdebug_log(111,0) << "| Edge " << edge << endl; cdebug_log(111,0) << "+ Neighbor: " << vneighbor << endl; DbU::Unit distance = _distanceCb( current, vneighbor, edge ); if (vneighbor->getConnexId() == _connectedsId) continue; if ( (distance < vneighbor->getDistance()) or ( (distance == vneighbor->getDistance()) and (current->getBranchId() > vneighbor->getBranchId())) ) { if (vneighbor->getDistance() != Vertex::unreached) { _queue.erase( vneighbor ); } else { if (not vneighbor->hasValidStamp()) { vneighbor->setConnexId( -1 ); vneighbor->setStamp ( _stamp ); } } vneighbor->setBranchId( current->getBranchId() ); vneighbor->setDistance( distance ); vneighbor->setFrom ( edge ); _queue.push( vneighbor ); cdebug_log(111,0) << "Push: (size:" << _queue.size() << ") " << vneighbor << endl; } } continue; } // We did reach another target (different ). // Tag back the path, with a higher . _traceback( current ); return true; } cerr << Error( "Dijkstra::propagate(): %s has unreachable targets." , getString(_net).c_str() ) << endl; cdebug_tabw(112,-1); return false; } void Dijkstra::_traceback ( Vertex* current ) { cdebug_log(112,1) << "Dijkstra::_traceback() " << _net << " branchId:" << _sources.size() << endl; int branchId = _sources.size(); _targets.erase( current ); while ( current ) { cdebug_log(112,0) << "| " << current << endl; if (current->getConnexId() == _connectedsId) break; Edge* from = current->getFrom(); if (not from) break; from->incRealOccupancy( 1 ); _sources.insert( current ); current->setDistance( 0.0 ); current->setConnexId( _connectedsId ); current->setBranchId( branchId ); _queue.push( current ); Vertex* source = current; Vertex* target = source->getPredecessor(); current = target; if ( (source->getGCell()->getXMin() > target->getGCell()->getXMin()) or (source->getGCell()->getYMin() > target->getGCell()->getYMin()) ) std::swap( source, target ); Contact* sourceContact = source->getGContact( _net ); Contact* targetContact = target->getGContact( _net ); if (from->isHorizontal()) { Horizontal::create( sourceContact , targetContact , _anabatic->getConfiguration()->getGHorizontalLayer() , from->getAxis() , DbU::fromLambda(2.0) ); } else { Vertical::create( sourceContact , targetContact , _anabatic->getConfiguration()->getGVerticalLayer() , from->getAxis() , DbU::fromLambda(2.0) ); } } cdebug_tabw(112,-1); } void Dijkstra::run ( Dijkstra::Mode mode ) { DebugSession::open( _net, 112, 120 ); cdebug_log(112,1) << "Dijkstra::run() on " << _net << " mode:" << mode << endl; _mode = mode; _selectFirstSource(); if (_sources.empty()) { cdebug_log(112,0) << "No source to start, not routed." << endl; cdebug_tabw(112,-1); return; } Flags enabledEdges = Flags::AllSides; if (_mode & Mode::Monotonic) { if ((*_sources.begin())->getCenter().getY() <= (*_targets.begin())->getCenter().getY()) enabledEdges = Flags::EastSide | Flags::NorthSide; else enabledEdges = Flags::EastSide | Flags::SouthSide; } Vertex* source = *_sources.begin(); _queue.clear(); _queue.push( source ); _connectedsId = source->getConnexId(); source->setDistance( 0.0 ); cdebug_log(112,0) << "Push source: (size:" << _queue.size() << ") " << source << " _connectedsId:" << _connectedsId << endl; while ( not _targets.empty() and _propagate(enabledEdges) ); _queue.clear(); cdebug_tabw(112,-1); DebugSession::close(); } } // Anabatic namespace.