aboutsummaryrefslogtreecommitdiffstats
path: root/common
Commit message (Collapse)AuthorAgeFilesLines
* Fix compile on GCC 5.5 or olderMiodrag Milanovic2018-11-271-0/+10
|
* Print warning and error count at end of executionDavid Shah2018-11-264-2/+19
| | | | Signed-off-by: David Shah <dave@ds0.me>
* timing: Improve clock constraint log outputDavid Shah2018-11-261-2/+6
| | | | Signed-off-by: David Shah <dave@ds0.me>
* placer1: During initial placement, don't rip-up strongly binded cellsSylvain Munaut2018-11-261-2/+3
| | | | Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
* clangformatDavid Shah2018-11-261-1/+1
| | | | Signed-off-by: David Shah <dave@ds0.me>
* Merge pull request #138 from YosysHQ/refactor_logDavid Shah2018-11-267-122/+84
|\ | | | | Tidy up logging code, add log file support, make timing failures non-fatal errors
| * Add nonfatal error support and use for timing failuresDavid Shah2018-11-264-3/+14
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * Change the log level of some timing-related messagesDavid Shah2018-11-213-16/+20
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * Refactor log code and add log file supportDavid Shah2018-11-214-105/+52
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
* | Merge pull request #139 from YosysHQ/fix_117David Shah2018-11-261-1/+6
|\ \ | | | | | | router1: Fix unrouted, undriven nets
| * | router1: Fix unrouted, undriven netsDavid Shah2018-11-211-1/+6
| |/ | | | | | | Signed-off-by: David Shah <dave@ds0.me>
* | python: Fixes to get net wires map workingDavid Shah2018-11-221-0/+7
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
* | python: Add wrapper for vectors to allow Python access to net.usersDavid Shah2018-11-223-4/+76
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
* | Merge pull request #122 from YosysHQ/ecp5_timingDavid Shah2018-11-221-1/+17
|\ \ | |/ |/| ecp5: Use cell and pip timings from the Trellis database
| * timing: Improve crit path statisticsDavid Shah2018-11-161-2/+7
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * ecp5: clangformat timing changesDavid Shah2018-11-161-2/+0
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * ecp5: Use speed-grade-specific delay estimateDavid Shah2018-11-161-1/+0
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| * ecp5: Fix db import, improve timing data debuggingDavid Shah2018-11-161-1/+15
| | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
* | Add missing router1 ctx->yield() callsClifford Wolf2018-11-201-0/+2
| | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* | Merge pull request #130 from smunaut/issue_127David Shah2018-11-202-8/+21
|\ \ | | | | | | common/placer1: In random pick, only use grid if there is more than 64 BELs
| * | common/placer1: In random pick, only use grid if there is more than 64 BELsSylvain Munaut2018-11-192-8/+21
| |/ | | | | | | | | | | | | | | | | | | If you have a large grid and very few BELs of a given type, picking a random grid location yields very little odds of finding a BEL of that type. So for those, just put all of them at (0,0) and do a true random pick. Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
* / add "randomize-seed" command-line optionMaik Merten2018-11-191-0/+10
|/
* clangformatDavid Shah2018-11-164-25/+33
| | | | Signed-off-by: David Shah <dave@ds0.me>
* Improve message spacingEddie Hung2018-11-142-3/+8
|
* Merge remote-tracking branch 'origin/master' into timingapiEddie Hung2018-11-144-27/+48
|\
| * [placer1] Only perform slack redist if legalisedEddie Hung2018-11-131-4/+4
| |
| * [placer1] Only increase temperature if legaliser moved somethingEddie Hung2018-11-132-19/+23
| |
| * [common] Fix 'after after'Eddie Hung2018-11-131-2/+2
| |
| * [common] Fix typo in Loc::operator!=()Eddie Hung2018-11-131-1/+1
| |
| * [placer1] Fix require_legal polarityEddie Hung2018-11-131-3/+3
| |
| * [timing] Path report to include pips when --verbose setEddie Hung2018-11-131-1/+18
| |
* | Timing fixesDavid Shah2018-11-142-1/+15
| | | | | | | | Signed-off-by: David Shah <davey1576@gmail.com>
* | [timing] Crit path report to print out edgesEddie Hung2018-11-131-3/+4
| |
* | [timing] Resolve another merge conflictEddie Hung2018-11-131-2/+2
| |
* | Merge remote-tracking branch 'origin/master' into timingapiEddie Hung2018-11-135-725/+771
|\|
| * Merge pull request #107 from YosysHQ/router_improveEddie Hung2018-11-134-719/+765
| |\ | | | | | | Major rewrite of "router1"
| | * Minor router1 debug log improvementsClifford Wolf2018-11-131-2/+8
| | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * Improve router1 debug output, switch to nameOf APIsClifford Wolf2018-11-131-41/+44
| | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * Add more nameOf() convenience methodsClifford Wolf2018-11-132-2/+36
| | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * Various router1 fixes, Add BelId/WireId/PipId::operator<()Clifford Wolf2018-11-131-13/+62
| | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * Fix router1 check for ECP5David Shah2018-11-121-0/+5
| | | | | | | | | | | | Signed-off-by: David Shah <dave@ds0.me>
| | * clangformatClifford Wolf2018-11-111-170/+178
| | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * Another router1 bugfixClifford Wolf2018-11-112-63/+55
| | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * Add getConflictingWireWire() arch API, streamline getConflictingXY semanticClifford Wolf2018-11-112-105/+117
| | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * Ignore "duplicate" arcs in the same net in router1Clifford Wolf2018-11-111-1/+4
| | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * Add some additional checks to router1 to find issues in input netlistClifford Wolf2018-11-111-0/+23
| | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * Add getConflictingPipWire() arch API, router1 improvementsClifford Wolf2018-11-112-20/+43
| | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * Another bugfix in router1Clifford Wolf2018-11-111-1/+1
| | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * Bugfix in router1Clifford Wolf2018-11-111-3/+7
| | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| | * Minor improvements in router1Clifford Wolf2018-11-111-4/+9
| | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>