2018-06-12 02:12:57 +08:00
|
|
|
/*
|
|
|
|
* nextpnr -- Next Generation Place and Route
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <unordered_set>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#ifndef NEXTPNR_H
|
|
|
|
#define NEXTPNR_H
|
|
|
|
|
2018-06-12 20:24:59 +08:00
|
|
|
#ifdef NEXTPNR_NAMESPACE
|
|
|
|
#define NEXTPNR_NAMESPACE_PREFIX NEXTPNR_NAMESPACE::
|
|
|
|
#define NEXTPNR_NAMESPACE_BEGIN namespace NEXTPNR_NAMESPACE {
|
|
|
|
#define NEXTPNR_NAMESPACE_END }
|
|
|
|
#define USING_NEXTPNR_NAMESPACE using namespace NEXTPNR_NAMESPACE;
|
|
|
|
#else
|
|
|
|
#define NEXTPNR_NAMESPACE_PREFIX
|
|
|
|
#define NEXTPNR_NAMESPACE_BEGIN
|
|
|
|
#define NEXTPNR_NAMESPACE_END
|
|
|
|
#define USING_NEXTPNR_NAMESPACE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
|
|
|
|
2018-06-18 20:53:01 +08:00
|
|
|
struct Context;
|
|
|
|
|
2018-06-12 21:08:01 +08:00
|
|
|
struct IdString
|
|
|
|
{
|
2018-06-12 21:37:28 +08:00
|
|
|
int index = 0;
|
|
|
|
|
2018-06-18 20:53:01 +08:00
|
|
|
static Context *global_ctx;
|
2018-06-12 21:37:28 +08:00
|
|
|
|
2018-06-18 21:53:18 +08:00
|
|
|
static void initialize_arch(const Context *ctx);
|
|
|
|
static void initialize_add(const Context *ctx, const char *s, int idx);
|
2018-06-12 21:08:01 +08:00
|
|
|
|
|
|
|
IdString() {}
|
|
|
|
|
2018-06-18 21:53:18 +08:00
|
|
|
void set(const Context *ctx, const std::string &s);
|
2018-06-18 20:53:01 +08:00
|
|
|
|
2018-06-18 21:53:18 +08:00
|
|
|
IdString(const Context *ctx, const std::string &s) { set(ctx, s); }
|
2018-06-12 21:37:28 +08:00
|
|
|
|
2018-06-18 21:53:18 +08:00
|
|
|
IdString(const Context *ctx, const char *s) { set(ctx, s); }
|
2018-06-12 21:37:28 +08:00
|
|
|
|
2018-06-18 21:53:18 +08:00
|
|
|
const std::string &str(const Context *ctx) const;
|
|
|
|
const char *c_str(const Context *ctx) const;
|
2018-06-12 21:08:01 +08:00
|
|
|
|
2018-06-18 20:57:38 +08:00
|
|
|
bool operator<(const IdString &other) const { return index < other.index; }
|
2018-06-12 21:08:01 +08:00
|
|
|
|
2018-06-12 21:52:38 +08:00
|
|
|
bool operator==(const IdString &other) const
|
|
|
|
{
|
|
|
|
return index == other.index;
|
|
|
|
}
|
2018-06-12 21:08:01 +08:00
|
|
|
|
2018-06-12 22:04:02 +08:00
|
|
|
bool operator!=(const IdString &other) const
|
|
|
|
{
|
|
|
|
return index != other.index;
|
|
|
|
}
|
2018-06-18 20:53:01 +08:00
|
|
|
|
|
|
|
bool empty() const { return index == 0; }
|
|
|
|
|
|
|
|
// --- deprecated old API ---
|
|
|
|
|
2018-06-18 20:57:38 +08:00
|
|
|
IdString(const std::string &s) __attribute__((deprecated))
|
2018-06-18 20:53:01 +08:00
|
|
|
{
|
|
|
|
assert(global_ctx != nullptr);
|
|
|
|
set(global_ctx, s);
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:57:38 +08:00
|
|
|
IdString(const char *s) __attribute__((deprecated))
|
2018-06-18 20:53:01 +08:00
|
|
|
{
|
|
|
|
assert(global_ctx != nullptr);
|
|
|
|
set(global_ctx, s);
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:57:38 +08:00
|
|
|
const std::string &global_str() const __attribute__((deprecated))
|
2018-06-18 20:53:01 +08:00
|
|
|
{
|
|
|
|
assert(global_ctx != nullptr);
|
|
|
|
return str(global_ctx);
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:57:38 +08:00
|
|
|
const std::string &str() const __attribute__((deprecated))
|
2018-06-18 20:53:01 +08:00
|
|
|
{
|
|
|
|
assert(global_ctx != nullptr);
|
|
|
|
return str(global_ctx);
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:57:38 +08:00
|
|
|
const char *c_str() const __attribute__((deprecated))
|
2018-06-18 20:53:01 +08:00
|
|
|
{
|
|
|
|
assert(global_ctx != nullptr);
|
|
|
|
return c_str(global_ctx);
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:57:38 +08:00
|
|
|
operator const char *() const __attribute__((deprecated))
|
|
|
|
{
|
2018-06-18 21:53:18 +08:00
|
|
|
assert(global_ctx != nullptr);
|
|
|
|
return c_str(global_ctx);
|
2018-06-18 20:57:38 +08:00
|
|
|
}
|
2018-06-18 20:53:01 +08:00
|
|
|
|
2018-06-18 20:57:38 +08:00
|
|
|
operator const std::string &() const __attribute__((deprecated))
|
|
|
|
{
|
2018-06-18 21:53:18 +08:00
|
|
|
assert(global_ctx != nullptr);
|
|
|
|
return str(global_ctx);
|
2018-06-18 20:57:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const std::string &s) const __attribute__((deprecated))
|
|
|
|
{
|
2018-06-18 21:53:18 +08:00
|
|
|
assert(global_ctx != nullptr);
|
|
|
|
return str(global_ctx) == s;
|
2018-06-18 20:57:38 +08:00
|
|
|
}
|
2018-06-18 20:53:01 +08:00
|
|
|
|
2018-06-18 20:57:38 +08:00
|
|
|
bool operator==(const char *s) const __attribute__((deprecated))
|
|
|
|
{
|
2018-06-18 21:53:18 +08:00
|
|
|
assert(global_ctx != nullptr);
|
|
|
|
return str(global_ctx) == s;
|
2018-06-18 20:57:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const std::string &s) const __attribute__((deprecated))
|
|
|
|
{
|
2018-06-18 21:53:18 +08:00
|
|
|
assert(global_ctx != nullptr);
|
|
|
|
return str(global_ctx) != s;
|
2018-06-18 20:57:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const char *s) const __attribute__((deprecated))
|
|
|
|
{
|
2018-06-18 21:53:18 +08:00
|
|
|
assert(global_ctx != nullptr);
|
|
|
|
return str(global_ctx) != s;
|
2018-06-18 20:57:38 +08:00
|
|
|
}
|
2018-06-12 22:04:02 +08:00
|
|
|
|
2018-06-18 21:53:18 +08:00
|
|
|
size_t size() const __attribute__((deprecated))
|
|
|
|
{
|
|
|
|
assert(global_ctx != nullptr);
|
|
|
|
return str(global_ctx).size();
|
|
|
|
}
|
2018-06-12 21:08:01 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_END
|
|
|
|
|
|
|
|
namespace std {
|
|
|
|
template <> struct hash<NEXTPNR_NAMESPACE_PREFIX IdString>
|
|
|
|
{
|
|
|
|
std::size_t operator()(const NEXTPNR_NAMESPACE_PREFIX IdString &obj) const
|
|
|
|
noexcept
|
|
|
|
{
|
2018-06-12 21:37:28 +08:00
|
|
|
return obj.index;
|
2018-06-12 21:08:01 +08:00
|
|
|
}
|
|
|
|
};
|
2018-06-12 21:13:33 +08:00
|
|
|
} // namespace std
|
2018-06-12 21:08:01 +08:00
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
2018-06-12 02:12:57 +08:00
|
|
|
|
|
|
|
struct GraphicElement
|
|
|
|
{
|
|
|
|
enum
|
|
|
|
{
|
2018-06-12 20:24:59 +08:00
|
|
|
G_NONE,
|
2018-06-12 02:12:57 +08:00
|
|
|
G_LINE,
|
|
|
|
G_BOX,
|
|
|
|
G_CIRCLE,
|
|
|
|
G_LABEL
|
2018-06-12 20:24:59 +08:00
|
|
|
} type = G_NONE;
|
2018-06-12 02:12:57 +08:00
|
|
|
|
2018-06-12 20:24:59 +08:00
|
|
|
float x1 = 0, y1 = 0, x2 = 0, y2 = 0, z = 0;
|
2018-06-12 02:12:57 +08:00
|
|
|
std::string text;
|
|
|
|
};
|
|
|
|
|
2018-06-12 20:24:59 +08:00
|
|
|
NEXTPNR_NAMESPACE_END
|
|
|
|
|
2018-06-18 20:12:39 +08:00
|
|
|
#include "arch.h"
|
2018-06-18 20:18:56 +08:00
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
struct CellInfo;
|
|
|
|
|
|
|
|
struct PortRef
|
|
|
|
{
|
|
|
|
CellInfo *cell = nullptr;
|
|
|
|
IdString port;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NetInfo
|
|
|
|
{
|
|
|
|
IdString name;
|
|
|
|
PortRef driver;
|
|
|
|
std::vector<PortRef> users;
|
|
|
|
std::unordered_map<IdString, std::string> attrs;
|
|
|
|
|
|
|
|
// wire -> uphill_pip
|
|
|
|
std::unordered_map<WireId, PipId> wires;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum PortType
|
|
|
|
{
|
|
|
|
PORT_IN = 0,
|
|
|
|
PORT_OUT = 1,
|
|
|
|
PORT_INOUT = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PortInfo
|
|
|
|
{
|
|
|
|
IdString name;
|
|
|
|
NetInfo *net;
|
|
|
|
PortType type;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CellInfo
|
|
|
|
{
|
|
|
|
IdString name, type;
|
|
|
|
std::unordered_map<IdString, PortInfo> ports;
|
|
|
|
std::unordered_map<IdString, std::string> attrs, params;
|
|
|
|
|
|
|
|
BelId bel;
|
|
|
|
// cell_port -> bel_pin
|
|
|
|
std::unordered_map<IdString, IdString> pins;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Context : Arch
|
|
|
|
{
|
2018-06-18 20:53:01 +08:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
2018-06-18 21:53:18 +08:00
|
|
|
mutable std::unordered_map<std::string, int> *idstring_str_to_idx;
|
|
|
|
mutable std::vector<const std::string *> *idstring_idx_to_str;
|
2018-06-18 20:53:01 +08:00
|
|
|
|
2018-06-18 21:53:18 +08:00
|
|
|
IdString id(const std::string &s) const override
|
|
|
|
{
|
|
|
|
return IdString(this, s);
|
|
|
|
}
|
|
|
|
IdString id(const char *s) const override { return IdString(this, s); }
|
2018-06-18 20:53:01 +08:00
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
2018-06-18 20:18:56 +08:00
|
|
|
std::unordered_map<IdString, NetInfo *> nets;
|
|
|
|
std::unordered_map<IdString, CellInfo *> cells;
|
|
|
|
|
|
|
|
Context(ArchArgs args) : Arch(args)
|
|
|
|
{
|
2018-06-18 20:53:01 +08:00
|
|
|
assert(IdString::global_ctx == nullptr);
|
|
|
|
IdString::global_ctx = this;
|
|
|
|
|
|
|
|
idstring_str_to_idx = new std::unordered_map<std::string, int>;
|
|
|
|
idstring_idx_to_str = new std::vector<const std::string *>;
|
|
|
|
IdString::initialize_add(this, "", 0);
|
|
|
|
IdString::initialize_arch(this);
|
|
|
|
|
2018-06-18 20:18:56 +08:00
|
|
|
// ...
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_END
|
2018-06-12 02:12:57 +08:00
|
|
|
|
|
|
|
#endif
|