2018-06-12 02:12:57 +08:00
|
|
|
/*
|
|
|
|
* nextpnr -- Next Generation Place and Route
|
|
|
|
*
|
2018-06-22 22:19:17 +08:00
|
|
|
* Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
|
2018-06-12 02:12:57 +08:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-06-20 17:44:28 +08:00
|
|
|
#include <algorithm>
|
2018-06-12 02:12:57 +08:00
|
|
|
#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-19 18:08:37 +08:00
|
|
|
struct BaseCtx;
|
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-19 18:08:37 +08:00
|
|
|
static BaseCtx *global_ctx;
|
2018-06-12 21:37:28 +08:00
|
|
|
|
2018-06-19 18:08:37 +08:00
|
|
|
static void initialize_arch(const BaseCtx *ctx);
|
|
|
|
static void initialize_add(const BaseCtx *ctx, const char *s, int idx);
|
2018-06-12 21:08:01 +08:00
|
|
|
|
|
|
|
IdString() {}
|
|
|
|
|
2018-06-19 18:08:37 +08:00
|
|
|
void set(const BaseCtx *ctx, const std::string &s);
|
2018-06-18 20:53:01 +08:00
|
|
|
|
2018-06-19 18:08:37 +08:00
|
|
|
IdString(const BaseCtx *ctx, const std::string &s) { set(ctx, s); }
|
2018-06-12 21:37:28 +08:00
|
|
|
|
2018-06-19 18:08:37 +08:00
|
|
|
IdString(const BaseCtx *ctx, const char *s) { set(ctx, s); }
|
2018-06-12 21:37:28 +08:00
|
|
|
|
2018-06-19 18:08:37 +08:00
|
|
|
const std::string &str(const BaseCtx *ctx) const;
|
|
|
|
const char *c_str(const BaseCtx *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
|
|
|
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-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-20 17:09:49 +08:00
|
|
|
return std::hash<int>()(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-19 18:08:37 +08:00
|
|
|
#define NEXTPNR_ARCH_TOP
|
2018-06-18 20:12:39 +08:00
|
|
|
#include "arch.h"
|
2018-06-19 18:08:37 +08:00
|
|
|
#undef NEXTPNR_ARCH_TOP
|
2018-06-18 20:18:56 +08:00
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
struct CellInfo;
|
|
|
|
|
2018-06-20 17:09:49 +08:00
|
|
|
enum PlaceStrength
|
|
|
|
{
|
2018-06-20 17:44:28 +08:00
|
|
|
STRENGTH_NONE = 0,
|
|
|
|
STRENGTH_WEAK = 1,
|
2018-06-20 17:09:49 +08:00
|
|
|
STRENGTH_STRONG = 2,
|
2018-06-20 17:44:28 +08:00
|
|
|
STRENGTH_FIXED = 3,
|
2018-06-20 17:09:49 +08:00
|
|
|
STRENGTH_LOCKED = 4,
|
2018-06-20 17:44:28 +08:00
|
|
|
STRENGTH_USER = 5
|
2018-06-20 17:09:49 +08:00
|
|
|
};
|
|
|
|
|
2018-06-18 20:18:56 +08:00
|
|
|
struct PortRef
|
|
|
|
{
|
|
|
|
CellInfo *cell = nullptr;
|
|
|
|
IdString port;
|
2018-06-21 22:25:25 +08:00
|
|
|
delay_t budget = 0;
|
2018-06-18 20:18:56 +08:00
|
|
|
};
|
|
|
|
|
2018-06-23 21:16:24 +08:00
|
|
|
struct PipMap
|
|
|
|
{
|
|
|
|
PipId pip = PipId();
|
|
|
|
PlaceStrength strength = STRENGTH_NONE;
|
|
|
|
};
|
|
|
|
|
2018-06-18 20:18:56 +08:00
|
|
|
struct NetInfo
|
|
|
|
{
|
|
|
|
IdString name;
|
|
|
|
PortRef driver;
|
|
|
|
std::vector<PortRef> users;
|
|
|
|
std::unordered_map<IdString, std::string> attrs;
|
|
|
|
|
|
|
|
// wire -> uphill_pip
|
2018-06-23 21:16:24 +08:00
|
|
|
std::unordered_map<WireId, PipMap> wires;
|
2018-06-18 20:18:56 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
2018-06-20 17:09:49 +08:00
|
|
|
PlaceStrength belStrength = STRENGTH_NONE;
|
|
|
|
|
2018-06-18 20:18:56 +08:00
|
|
|
// cell_port -> bel_pin
|
|
|
|
std::unordered_map<IdString, IdString> pins;
|
|
|
|
};
|
|
|
|
|
2018-06-19 18:08:37 +08:00
|
|
|
struct BaseCtx
|
2018-06-18 20:18:56 +08:00
|
|
|
{
|
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-19 18:08:37 +08:00
|
|
|
IdString id(const std::string &s) const { return IdString(this, s); }
|
|
|
|
IdString id(const char *s) const { 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;
|
|
|
|
|
2018-06-19 18:08:37 +08:00
|
|
|
BaseCtx()
|
2018-06-18 20:18:56 +08:00
|
|
|
{
|
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
|
|
|
|
2018-06-19 18:08:37 +08:00
|
|
|
#define NEXTPNR_ARCH_BOTTOM
|
|
|
|
#include "arch.h"
|
|
|
|
#undef NEXTPNR_ARCH_BOTTOM
|
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
struct Context : Arch
|
|
|
|
{
|
|
|
|
bool verbose = false;
|
2018-06-21 20:08:45 +08:00
|
|
|
bool debug = false;
|
2018-06-19 19:38:53 +08:00
|
|
|
bool force = false;
|
2018-06-19 18:08:37 +08:00
|
|
|
|
|
|
|
Context(ArchArgs args) : Arch(args) {}
|
2018-06-19 18:49:40 +08:00
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
|
|
|
uint64_t rngstate = 0x3141592653589793;
|
|
|
|
|
|
|
|
uint64_t rng64()
|
|
|
|
{
|
|
|
|
// xorshift64star
|
|
|
|
// https://arxiv.org/abs/1402.6246
|
2018-06-21 21:47:41 +08:00
|
|
|
|
|
|
|
uint64_t retval = rngstate * 0x2545F4914F6CDD1D;
|
|
|
|
|
2018-06-19 18:49:40 +08:00
|
|
|
rngstate ^= rngstate >> 12;
|
|
|
|
rngstate ^= rngstate << 25;
|
|
|
|
rngstate ^= rngstate >> 27;
|
2018-06-21 21:47:41 +08:00
|
|
|
|
|
|
|
return retval;
|
2018-06-19 18:49:40 +08:00
|
|
|
}
|
|
|
|
|
2018-06-19 19:40:35 +08:00
|
|
|
int rng() { return rng64() & 0x3fffffff; }
|
2018-06-19 18:49:40 +08:00
|
|
|
|
|
|
|
int rng(int n)
|
|
|
|
{
|
|
|
|
assert(n > 0);
|
|
|
|
|
|
|
|
// round up to power of 2
|
|
|
|
int m = n - 1;
|
|
|
|
m |= (m >> 1);
|
|
|
|
m |= (m >> 2);
|
|
|
|
m |= (m >> 4);
|
|
|
|
m |= (m >> 8);
|
|
|
|
m |= (m >> 16);
|
|
|
|
m += 1;
|
|
|
|
|
|
|
|
while (1) {
|
2018-06-19 19:40:35 +08:00
|
|
|
int x = rng64() & (m - 1);
|
|
|
|
if (x < n)
|
|
|
|
return x;
|
2018-06-19 18:49:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void rngseed(uint64_t seed)
|
|
|
|
{
|
|
|
|
rngstate = seed ? seed : 0x3141592653589793;
|
2018-06-19 19:40:35 +08:00
|
|
|
for (int i = 0; i < 5; i++)
|
|
|
|
rng64();
|
2018-06-19 18:49:40 +08:00
|
|
|
}
|
|
|
|
|
2018-06-19 19:40:35 +08:00
|
|
|
template <typename T> void shuffle(std::vector<T> &a)
|
|
|
|
{
|
2018-06-19 18:49:40 +08:00
|
|
|
for (size_t i = 0; i != a.size(); i++) {
|
|
|
|
size_t j = i + rng(a.size() - i);
|
2018-06-19 19:40:35 +08:00
|
|
|
if (j > i)
|
|
|
|
std::swap(a[i], a[j]);
|
2018-06-19 18:49:40 +08:00
|
|
|
}
|
|
|
|
}
|
2018-06-19 22:23:23 +08:00
|
|
|
|
|
|
|
template <typename T> void sorted_shuffle(std::vector<T> &a)
|
|
|
|
{
|
|
|
|
std::sort(a.begin(), a.end());
|
|
|
|
shuffle(a);
|
|
|
|
}
|
2018-06-21 21:47:41 +08:00
|
|
|
|
|
|
|
uint32_t checksum() const;
|
2018-06-23 21:16:24 +08:00
|
|
|
void check() const;
|
2018-06-19 18:08:37 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_END
|
|
|
|
|
2018-06-12 02:12:57 +08:00
|
|
|
#endif
|