aboutsummaryrefslogtreecommitdiffstats
path: root/common/place/detail_place_core.cc
Commit message (Collapse)AuthorAgeFilesLines
* common: disable parallel refinement only without threads.Catherine2023-02-231-3/+3
| | | | Previously it was always disabled on WebAssembly builds.
* netlist: Add PseudoCell APIgatecat2022-07-081-3/+9
| | | | | | | | | | | | | | | When implementing concepts such as partition pins or deliberately split nets, there's a need for something that looks like a cell (starts/ends routing with pins on nets, has timing data) but isn't mapped to a fixed bel in the architecture, but instead can have pin mappings defined at runtime. The PseudoCell allows this by providing an alternate, virtual-function based API for such cells. When a cell has `pseudo_cell` used, instead of calling functions such as getBelPinWire, getBelLocation or getCellDelay in the Arch API; such data is provided by the cell itself, fully flexible at runtime regardless of arch, via methods on the PseudoCell implementation.
* prefine: Do full-tile swaps, toogatecat2022-04-191-1/+1
| | | | Signed-off-by: gatecat <gatecat@ds0.me>
* Move general parallel detail place code out of parallel_refinegatecat2022-04-171-0/+457
Signed-off-by: gatecat <gatecat@ds0.me>