Refactor IdString functionality into IdStringDB
This lets us more precisely control the lifetime of IdString databases in contexts/arches.
This commit is contained in:
parent
1b5c1b028e
commit
59a790cd00
@ -27,7 +27,7 @@ assertion_failure::assertion_failure(std::string msg, std::string expr_str, std:
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void IdString::set(const BaseCtx *ctx, const std::string &s)
|
void IdString::set(const IdStringDB *ctx, const std::string &s)
|
||||||
{
|
{
|
||||||
auto it = ctx->idstring_str_to_idx->find(s);
|
auto it = ctx->idstring_str_to_idx->find(s);
|
||||||
if (it == ctx->idstring_str_to_idx->end()) {
|
if (it == ctx->idstring_str_to_idx->end()) {
|
||||||
@ -39,11 +39,11 @@ void IdString::set(const BaseCtx *ctx, const std::string &s)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const std::string &IdString::str(const BaseCtx *ctx) const { return *ctx->idstring_idx_to_str->at(index); }
|
const std::string &IdString::str(const IdStringDB *ctx) const { return *ctx->idstring_idx_to_str->at(index); }
|
||||||
|
|
||||||
const char *IdString::c_str(const BaseCtx *ctx) const { return str(ctx).c_str(); }
|
const char *IdString::c_str(const IdStringDB *ctx) const { return str(ctx).c_str(); }
|
||||||
|
|
||||||
void IdString::initialize_add(const BaseCtx *ctx, const char *s, int idx)
|
void IdString::initialize_add(const IdStringDB *ctx, const char *s, int idx)
|
||||||
{
|
{
|
||||||
NPNR_ASSERT(ctx->idstring_str_to_idx->count(s) == 0);
|
NPNR_ASSERT(ctx->idstring_str_to_idx->count(s) == 0);
|
||||||
NPNR_ASSERT(int(ctx->idstring_idx_to_str->size()) == idx);
|
NPNR_ASSERT(int(ctx->idstring_idx_to_str->size()) == idx);
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
* nextpnr -- Next Generation Place and Route
|
* nextpnr -- Next Generation Place and Route
|
||||||
*
|
*
|
||||||
* Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
|
* Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
|
||||||
|
* Copyright (C) 2018 Serge Bazanski <q3k@symbioticeda.com>
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
* purpose with or without fee is hereby granted, provided that the above
|
||||||
@ -88,28 +89,28 @@ inline void assert_false_impl(std::string message, std::string filename, int lin
|
|||||||
#define NPNR_ASSERT_MSG(cond, msg) except_assert_impl((cond), msg, #cond, __FILE__, __LINE__)
|
#define NPNR_ASSERT_MSG(cond, msg) except_assert_impl((cond), msg, #cond, __FILE__, __LINE__)
|
||||||
#define NPNR_ASSERT_FALSE(msg) assert_false_impl(msg, __FILE__, __LINE__)
|
#define NPNR_ASSERT_FALSE(msg) assert_false_impl(msg, __FILE__, __LINE__)
|
||||||
|
|
||||||
struct BaseCtx;
|
struct IdStringDB;
|
||||||
struct Context;
|
struct Context;
|
||||||
|
|
||||||
struct IdString
|
struct IdString
|
||||||
{
|
{
|
||||||
int index = 0;
|
int index = 0;
|
||||||
|
|
||||||
static void initialize_arch(const BaseCtx *ctx);
|
static void initialize_arch(const IdStringDB *ctx);
|
||||||
|
|
||||||
static void initialize_add(const BaseCtx *ctx, const char *s, int idx);
|
static void initialize_add(const IdStringDB *ctx, const char *s, int idx);
|
||||||
|
|
||||||
IdString() {}
|
IdString() {}
|
||||||
|
|
||||||
void set(const BaseCtx *ctx, const std::string &s);
|
void set(const IdStringDB *ctx, const std::string &s);
|
||||||
|
|
||||||
IdString(const BaseCtx *ctx, const std::string &s) { set(ctx, s); }
|
IdString(const IdStringDB *ctx, const std::string &s) { set(ctx, s); }
|
||||||
|
|
||||||
IdString(const BaseCtx *ctx, const char *s) { set(ctx, s); }
|
IdString(const IdStringDB *ctx, const char *s) { set(ctx, s); }
|
||||||
|
|
||||||
const std::string &str(const BaseCtx *ctx) const;
|
const std::string &str(const IdStringDB *ctx) const;
|
||||||
|
|
||||||
const char *c_str(const BaseCtx *ctx) const;
|
const char *c_str(const IdStringDB *ctx) const;
|
||||||
|
|
||||||
bool operator<(const IdString &other) const { return index < other.index; }
|
bool operator<(const IdString &other) const { return index < other.index; }
|
||||||
|
|
||||||
@ -238,23 +239,18 @@ struct CellInfo
|
|||||||
std::unordered_map<IdString, IdString> pins;
|
std::unordered_map<IdString, IdString> pins;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct BaseCtx
|
class IdStringDB
|
||||||
{
|
{
|
||||||
// --------------------------------------------------------------
|
friend class IdString;
|
||||||
|
private:
|
||||||
mutable std::unordered_map<std::string, int> *idstring_str_to_idx;
|
mutable std::unordered_map<std::string, int> *idstring_str_to_idx;
|
||||||
mutable std::vector<const std::string *> *idstring_idx_to_str;
|
mutable std::vector<const std::string *> *idstring_idx_to_str;
|
||||||
|
|
||||||
|
public:
|
||||||
IdString id(const std::string &s) const { return IdString(this, s); }
|
IdString id(const std::string &s) const { return IdString(this, s); }
|
||||||
|
|
||||||
IdString id(const char *s) const { return IdString(this, s); }
|
IdString id(const char *s) const { return IdString(this, s); }
|
||||||
|
|
||||||
// --------------------------------------------------------------
|
IdStringDB()
|
||||||
|
|
||||||
std::unordered_map<IdString, std::unique_ptr<NetInfo>> nets;
|
|
||||||
std::unordered_map<IdString, std::unique_ptr<CellInfo>> cells;
|
|
||||||
|
|
||||||
BaseCtx()
|
|
||||||
{
|
{
|
||||||
idstring_str_to_idx = new std::unordered_map<std::string, int>;
|
idstring_str_to_idx = new std::unordered_map<std::string, int>;
|
||||||
idstring_idx_to_str = new std::vector<const std::string *>;
|
idstring_idx_to_str = new std::vector<const std::string *>;
|
||||||
@ -262,11 +258,21 @@ struct BaseCtx
|
|||||||
IdString::initialize_arch(this);
|
IdString::initialize_arch(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
~BaseCtx()
|
~IdStringDB()
|
||||||
{
|
{
|
||||||
delete idstring_str_to_idx;
|
delete idstring_str_to_idx;
|
||||||
delete idstring_idx_to_str;
|
delete idstring_idx_to_str;
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
class BaseCtx : public IdStringDB
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
std::unordered_map<IdString, std::unique_ptr<NetInfo>> nets;
|
||||||
|
std::unordered_map<IdString, std::unique_ptr<CellInfo>> cells;
|
||||||
|
|
||||||
|
BaseCtx() {}
|
||||||
|
~BaseCtx() {}
|
||||||
|
|
||||||
Context *getCtx() { return reinterpret_cast<Context *>(this); }
|
Context *getCtx() { return reinterpret_cast<Context *>(this); }
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ BelType Arch::belTypeFromId(IdString type) const
|
|||||||
|
|
||||||
// -----------------------------------------------------------------------
|
// -----------------------------------------------------------------------
|
||||||
|
|
||||||
void IdString::initialize_arch(const BaseCtx *ctx)
|
void IdString::initialize_arch(const IdStringDB *ctx)
|
||||||
{
|
{
|
||||||
#define X(t) initialize_add(ctx, #t, PIN_##t);
|
#define X(t) initialize_add(ctx, #t, PIN_##t);
|
||||||
|
|
||||||
|
@ -157,7 +157,7 @@ void Arch::setGroupDecal(GroupId group, DecalXY decalxy)
|
|||||||
|
|
||||||
Arch::Arch(ArchArgs) {}
|
Arch::Arch(ArchArgs) {}
|
||||||
|
|
||||||
void IdString::initialize_arch(const BaseCtx *ctx) {}
|
void IdString::initialize_arch(const IdStringDB *ctx) {}
|
||||||
|
|
||||||
// ---------------------------------------------------------------
|
// ---------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -102,7 +102,7 @@ BelType Arch::belTypeFromId(IdString type) const
|
|||||||
|
|
||||||
// -----------------------------------------------------------------------
|
// -----------------------------------------------------------------------
|
||||||
|
|
||||||
void IdString::initialize_arch(const BaseCtx *ctx)
|
void IdString::initialize_arch(const IdStringDB *ctx)
|
||||||
{
|
{
|
||||||
#define X(t) initialize_add(ctx, #t, PIN_##t);
|
#define X(t) initialize_add(ctx, #t, PIN_##t);
|
||||||
#include "portpins.inc"
|
#include "portpins.inc"
|
||||||
|
Loading…
Reference in New Issue
Block a user