aboutsummaryrefslogtreecommitdiffstats
path: root/nexus/arch.h
diff options
context:
space:
mode:
authorD. Shah <dave@ds0.me>2021-01-27 20:43:01 +0000
committerD. Shah <dave@ds0.me>2021-01-27 20:43:01 +0000
commit75ee2fc4e6ede1ad731b9451fd606c61f5892801 (patch)
tree42900c8ff1012a62f2ff4a23af2616d47e76f234 /nexus/arch.h
parent3fc5455ec5fdaef0df0b01115e1ee0f9c9af8892 (diff)
downloadnextpnr-75ee2fc4e6ede1ad731b9451fd606c61f5892801.tar.gz
nextpnr-75ee2fc4e6ede1ad731b9451fd606c61f5892801.tar.bz2
nextpnr-75ee2fc4e6ede1ad731b9451fd606c61f5892801.zip
Move RelPtr/RelSlice out of arches into common
The bba approach seems widely used enough that it's reasonable for this to become part of common code. Signed-off-by: D. Shah <dave@ds0.me>
Diffstat (limited to 'nexus/arch.h')
-rw-r--r--nexus/arch.h40
1 files changed, 1 insertions, 39 deletions
diff --git a/nexus/arch.h b/nexus/arch.h
index 00934797..e9984ee6 100644
--- a/nexus/arch.h
+++ b/nexus/arch.h
@@ -28,45 +28,7 @@
NEXTPNR_NAMESPACE_BEGIN
-template <typename T> struct RelPtr
-{
- int32_t offset;
-
- // void set(const T *ptr) {
- // offset = reinterpret_cast<const char*>(ptr) -
- // reinterpret_cast<const char*>(this);
- // }
-
- const T *get() const { return reinterpret_cast<const T *>(reinterpret_cast<const char *>(this) + offset); }
-
- const T &operator[](size_t index) const { return get()[index]; }
-
- const T &operator*() const { return *(get()); }
-
- const T *operator->() const { return get(); }
-};
-
-NPNR_PACKED_STRUCT(template <typename T> struct RelSlice {
- int32_t offset;
- uint32_t length;
-
- const T *get() const { return reinterpret_cast<const T *>(reinterpret_cast<const char *>(this) + offset); }
-
- const T &operator[](size_t index) const
- {
- NPNR_ASSERT(index < length);
- return get()[index];
- }
-
- const T *begin() const { return get(); }
- const T *end() const { return get() + length; }
-
- const size_t size() const { return length; }
-
- const T &operator*() const { return *(get()); }
-
- const T *operator->() const { return get(); }
-});
+#include "relptr.h"
/*
Fully deduplicated database