From be826df3ce838e11ce45ae307d12e17e7804e51f Mon Sep 17 00:00:00 2001 From: Rowan Goemans Date: Thu, 26 Sep 2024 18:24:34 +0200 Subject: [PATCH] basectx: Store path constraints into the context for now --- common/kernel/basectx.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/kernel/basectx.h b/common/kernel/basectx.h index c8791a2b..0b8acf0d 100644 --- a/common/kernel/basectx.h +++ b/common/kernel/basectx.h @@ -34,6 +34,7 @@ #include "nextpnr_types.h" #include "property.h" #include "str_ring_buffer.h" +#include "timing_constraint.h" NEXTPNR_NAMESPACE_BEGIN @@ -84,6 +85,9 @@ struct BaseCtx // Context meta data dict attrs; + // Path constraints set via SDC + std::vector path_constraints; + // Fmax data post timing analysis TimingResult timing_result;