aboutsummaryrefslogtreecommitdiffstats
path: root/common/context.h
Commit message (Collapse)AuthorAgeFilesLines
* Added a commandline option controlled writeout of per-net timing detailsMaciej Kurc2021-09-281-0/+2
| | | | Signed-off-by: Maciej Kurc <mkurc@antmicro.com>
* common: Add JSON timing and utilisation reportgatecat2021-07-291-0/+4
| | | | Signed-off-by: gatecat <gatecat@ds0.me>
* clangformatgatecat2021-07-011-1/+5
| | | | Signed-off-by: gatecat <gatecat@ds0.me>
* Preserve ArchArgs and reinit Context when applicable in GUIMiodrag Milanovic2021-06-301-1/+5
|
* Fixing old emails and names in copyrightsgatecat2021-06-121-2/+2
| | | | Signed-off-by: gatecat <gatecat@ds0.me>
* Use hashlib in routersgatecat2021-06-021-1/+1
| | | | Signed-off-by: gatecat <gatecat@ds0.me>
* Split nextpnr.h to allow for linear inclusion.Keith Rothman2021-03-151-0/+103
"nextpnr.h" is no longer the god header. Important improvements: - Functions in log.h can be used without including BaseCtx/Arch/Context. This means that log_X functions can be called without included "nextpnr.h" - NPNR_ASSERT can be used without including "nextpnr.h" by including "nextpnr_assertions.h". This allows NPNR_ASSERT to be used safely in any header file. - Types defined in "archdefs.h" are now available without including BaseCtx/Arch/Context. This means that utility classes that will be used inside of BaseCtx/Arch/Context can be defined safely in a self-contained header. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>