From 603b60da8dcadf23eec8609ffc128f8f191c1122 Mon Sep 17 00:00:00 2001 From: gatecat Date: Wed, 7 Dec 2022 10:27:58 +0100 Subject: api: add explain_invalid option to isBelLocationValid Signed-off-by: gatecat --- common/kernel/arch_api.h | 2 +- common/kernel/arch_pybindings_shared.h | 4 ++-- common/kernel/base_arch.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'common/kernel') diff --git a/common/kernel/arch_api.h b/common/kernel/arch_api.h index 94a88338..56c5cf0a 100644 --- a/common/kernel/arch_api.h +++ b/common/kernel/arch_api.h @@ -135,7 +135,7 @@ template struct ArchAPI : BaseCtx virtual BelBucketId getBelBucketByName(IdString name) const = 0; virtual BelBucketId getBelBucketForBel(BelId bel) const = 0; virtual BelBucketId getBelBucketForCellType(IdString cell_type) const = 0; - virtual bool isBelLocationValid(BelId bel) const = 0; + virtual bool isBelLocationValid(BelId bel, bool explain_invalid = false) const = 0; virtual typename R::CellTypeRangeT getCellTypes() const = 0; virtual typename R::BelBucketRangeT getBelBuckets() const = 0; virtual typename R::BucketBelRangeT getBelsInBucket(BelBucketId bucket) const = 0; diff --git a/common/kernel/arch_pybindings_shared.h b/common/kernel/arch_pybindings_shared.h index d78d240c..ac0eda07 100644 --- a/common/kernel/arch_pybindings_shared.h +++ b/common/kernel/arch_pybindings_shared.h @@ -127,8 +127,8 @@ fn_wrapper_0a, pass_through>::def_wrap(ctx_cls, "writeSVG"); -fn_wrapper_1a, - conv_from_str>::def_wrap(ctx_cls, "isBelLocationValid"); +fn_wrapper_2a, + conv_from_str, pass_through>::def_wrap(ctx_cls, "isBelLocationValid"); // const\_range\ getBelBuckets() const fn_wrapper_0a struct BaseArch : ArchAPI { return getBelBucketByName(cell_type); }; - virtual bool isBelLocationValid(BelId bel) const override { return true; } + virtual bool isBelLocationValid(BelId bel, bool explain_invalid = false) const override { return true; } virtual typename R::CellTypeRangeT getCellTypes() const override { NPNR_ASSERT(cell_types_initialised); -- cgit v1.2.3