diff options
author | David Shah <davey1576@gmail.com> | 2018-06-17 11:14:49 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-06-17 11:14:49 +0200 |
commit | f9bfccf68e939a2d14c0d94a14234822e9727b89 (patch) | |
tree | aa917a5a3e02324bfec6bf5a8c71372091da4a0f /ice40 | |
parent | e95f38e88ebcd07e0cf313cabbd5c2e56a6db85c (diff) | |
download | nextpnr-f9bfccf68e939a2d14c0d94a14234822e9727b89.tar.gz nextpnr-f9bfccf68e939a2d14c0d94a14234822e9727b89.tar.bz2 nextpnr-f9bfccf68e939a2d14c0d94a14234822e9727b89.zip |
Add 'get or default' functions
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ice40')
-rw-r--r-- | ice40/arch_place.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ice40/arch_place.cc b/ice40/arch_place.cc index 93b7beb4..83dd63aa 100644 --- a/ice40/arch_place.cc +++ b/ice40/arch_place.cc @@ -19,6 +19,7 @@ #include "arch_place.h" #include "cells.h" +#include "util.h" NEXTPNR_NAMESPACE_BEGIN @@ -39,7 +40,7 @@ static bool logicCellsCompatible(const std::vector<const CellInfo *> &cells) std::unordered_set<const NetInfo *> locals; for (auto cell : cells) { - if (std::stoi(cell->params.at("DFF_ENABLE"))) { + if (bool_or_default(cell->params, "DFF_ENABLE")) { if (!dffs_exist) { dffs_exist = true; cen = get_net_or_nullptr(cell, "CEN"); @@ -53,7 +54,7 @@ static bool logicCellsCompatible(const std::vector<const CellInfo *> &cells) if (!is_global_net(sr)) locals.insert(sr); - if (std::stoi(cell->params.at("NEG_CLK"))) { + if (bool_or_default(cell->params, "NEG_CLK")) { dffs_neg = true; } } else { @@ -63,7 +64,7 @@ static bool logicCellsCompatible(const std::vector<const CellInfo *> &cells) return false; if (sr != get_net_or_nullptr(cell, "SR")) return false; - if (dffs_neg != bool(std::stoi(cell->params.at("NEG_CLK")))) + if (dffs_neg != bool_or_default(cell->params, "NEG_CLK")) return false; } } |