aboutsummaryrefslogtreecommitdiffstats
path: root/ice40
diff options
context:
space:
mode:
authorSergiusz Bazanski <q3k@q3k.org>2018-07-14 11:25:38 +0100
committerSergiusz Bazanski <q3k@q3k.org>2018-07-14 11:25:38 +0100
commitf333a68753655a4ccf7da9a4da96e7fdd19f9d08 (patch)
treed2464ef182805d07139089d86522f190fcb8b153 /ice40
parent8ca7a6da2525463be5be4ee9f62cfae0acc06b01 (diff)
downloadnextpnr-f333a68753655a4ccf7da9a4da96e7fdd19f9d08.tar.gz
nextpnr-f333a68753655a4ccf7da9a4da96e7fdd19f9d08.tar.bz2
nextpnr-f333a68753655a4ccf7da9a4da96e7fdd19f9d08.zip
Add read/mutate context stubs for ECP5
Diffstat (limited to 'ice40')
-rw-r--r--ice40/arch.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/ice40/arch.h b/ice40/arch.h
index f41990c3..cdee92e4 100644
--- a/ice40/arch.h
+++ b/ice40/arch.h
@@ -345,7 +345,6 @@ class Arch : public BaseCtx
friend class ArchReadMethods;
private:
- // All of the following...
std::vector<IdString> bel_to_cell;
std::vector<IdString> wire_to_net;
std::vector<IdString> pip_to_net;
@@ -633,15 +632,12 @@ class ArchReadMethods : public BaseReadCtx
ArchReadMethods(const ArchReadMethods &other) : ArchReadMethods(other.parent_) {}
/// Perform placement validity checks, returning false on failure (all implemented in arch_place.cc)
-
// Whether or not a given cell can be placed at a given Bel
// This is not intended for Bel type checks, but finer-grained constraints
// such as conflicting set/reset signals, etc
bool isValidBelForCell(CellInfo *cell, BelId bel) const;
-
// Return true whether all Bels at a given location are valid
bool isBelLocationValid(BelId bel) const;
-
// Helper function for above
bool logicCellsCompatible(const std::vector<const CellInfo *> &cells) const;