aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/design.h21
-rw-r--r--common/pybindings.cc4
-rw-r--r--common/route.cc4
-rw-r--r--dummy/chip.cc63
-rw-r--r--dummy/chip.h30
-rw-r--r--frontend/json/jsonparse.cc9
-rw-r--r--ice40/bitstream.cc7
-rw-r--r--ice40/chip.cc16
-rw-r--r--ice40/chip.h30
9 files changed, 95 insertions, 89 deletions
diff --git a/common/design.h b/common/design.h
index 1591e0f2..d05e6095 100644
--- a/common/design.h
+++ b/common/design.h
@@ -30,11 +30,6 @@
// replace with proper IdString later
typedef std::string IdString;
-// replace with haslib later
-template <typename T> using pool = std::unordered_set<T>;
-template <typename T, typename U> using dict = std::unordered_map<T, U>;
-using std::vector;
-
struct GraphicElement
{
// This will control colour, and there should be separate
@@ -82,11 +77,11 @@ struct NetInfo
{
IdString name;
PortRef driver;
- vector<PortRef> users;
- dict<IdString, std::string> attrs;
+ std::vector<PortRef> users;
+ std::unordered_map<IdString, std::string> attrs;
// wire -> uphill_pip
- dict<WireId, PipId> wires;
+ std::unordered_map<WireId, PipId> wires;
};
enum PortType
@@ -106,12 +101,12 @@ struct PortInfo
struct CellInfo
{
IdString name, type;
- dict<IdString, PortInfo> ports;
- dict<IdString, std::string> attrs, params;
+ std::unordered_map<IdString, PortInfo> ports;
+ std::unordered_map<IdString, std::string> attrs, params;
BelId bel;
// cell_port -> bel_pin
- dict<IdString, IdString> pins;
+ std::unordered_map<IdString, IdString> pins;
};
struct Design
@@ -123,8 +118,8 @@ struct Design
// ...
}
- dict<IdString, NetInfo *> nets;
- dict<IdString, CellInfo *> cells;
+ std::unordered_map<IdString, NetInfo *> nets;
+ std::unordered_map<IdString, CellInfo *> cells;
};
#endif
diff --git a/common/pybindings.cc b/common/pybindings.cc
index 24269b55..82f35421 100644
--- a/common/pybindings.cc
+++ b/common/pybindings.cc
@@ -88,8 +88,8 @@ BOOST_PYTHON_MODULE(MODULE_NAME)
WRAP_MAP(decltype(NetInfo::attrs), "IdStrMap");
- class_<vector<PortRef>>("PortRefVector")
- .def(vector_indexing_suite<vector<PortRef>>());
+ class_<std::vector<PortRef>>("PortRefVector")
+ .def(vector_indexing_suite<std::vector<PortRef>>());
enum_<PortType>("PortType")
.value("PORT_IN", PORT_IN)
diff --git a/common/route.cc b/common/route.cc
index b57bc29f..b98db259 100644
--- a/common/route.cc
+++ b/common/route.cc
@@ -71,7 +71,7 @@ void route_design(Design *design)
log(" Source wire: %s\n", chip.getWireName(src_wire).c_str());
- dict<WireId, DelayInfo> src_wires;
+ std::unordered_map<WireId, DelayInfo> src_wires;
src_wires[src_wire] = DelayInfo();
net_info->wires[src_wire] = PipId();
chip.bindWire(src_wire, net_name);
@@ -97,7 +97,7 @@ void route_design(Design *design)
log(" Destination wire: %s\n",
chip.getWireName(dst_wire).c_str());
- dict<WireId, QueuedWire> visited;
+ std::unordered_map<WireId, QueuedWire> visited;
std::priority_queue<QueuedWire, std::vector<QueuedWire>,
std::greater<QueuedWire>>
queue;
diff --git a/dummy/chip.cc b/dummy/chip.cc
index 2ca02964..1376c11c 100644
--- a/dummy/chip.cc
+++ b/dummy/chip.cc
@@ -34,17 +34,20 @@ void Chip::unbindBel(BelId bel) {}
bool Chip::checkBelAvail(BelId bel) const { return false; }
-IdString Chip::getBelCell(BelId bel, bool conflicting) const { return IdString(); }
+IdString Chip::getBelCell(BelId bel, bool conflicting) const
+{
+ return IdString();
+}
-const vector<BelId> &Chip::getBels() const
+const std::vector<BelId> &Chip::getBels() const
{
- static vector<BelId> ret;
+ static std::vector<BelId> ret;
return ret;
}
-const vector<BelId> &Chip::getBelsByType(BelType type) const
+const std::vector<BelId> &Chip::getBelsByType(BelType type) const
{
- static vector<BelId> ret;
+ static std::vector<BelId> ret;
return ret;
}
@@ -54,9 +57,9 @@ WireId Chip::getWireBelPin(BelId bel, PortPin pin) const { return WireId(); }
BelPin Chip::getBelPinUphill(WireId wire) const { return BelPin(); }
-const vector<BelPin> &Chip::getBelPinsDownhill(WireId wire) const
+const std::vector<BelPin> &Chip::getBelPinsDownhill(WireId wire) const
{
- static vector<BelPin> ret;
+ static std::vector<BelPin> ret;
return ret;
}
@@ -72,11 +75,14 @@ void Chip::unbindWire(WireId wire) {}
bool Chip::checkWireAvail(WireId wire) const { return false; }
-IdString Chip::getWireNet(WireId wire, bool conflicting) const { return IdString(); }
+IdString Chip::getWireNet(WireId wire, bool conflicting) const
+{
+ return IdString();
+}
-const vector<WireId> &Chip::getWires() const
+const std::vector<WireId> &Chip::getWires() const
{
- static vector<WireId> ret;
+ static std::vector<WireId> ret;
return ret;
}
@@ -92,11 +98,14 @@ void Chip::unbindPip(PipId pip) {}
bool Chip::checkPipAvail(PipId pip) const { return false; }
-IdString Chip::getPipNet(PipId pip, bool conflicting) const { return IdString(); }
+IdString Chip::getPipNet(PipId pip, bool conflicting) const
+{
+ return IdString();
+}
-const vector<PipId> &Chip::getPips() const
+const std::vector<PipId> &Chip::getPips() const
{
- static vector<PipId> ret;
+ static std::vector<PipId> ret;
return ret;
}
@@ -106,44 +115,44 @@ WireId Chip::getPipDstWire(PipId pip) const { return WireId(); }
DelayInfo Chip::getPipDelay(PipId pip) const { return DelayInfo(); }
-const vector<PipId> &Chip::getPipsDownhill(WireId wire) const
+const std::vector<PipId> &Chip::getPipsDownhill(WireId wire) const
{
- static vector<PipId> ret;
+ static std::vector<PipId> ret;
return ret;
}
-const vector<PipId> &Chip::getPipsUphill(WireId wire) const
+const std::vector<PipId> &Chip::getPipsUphill(WireId wire) const
{
- static vector<PipId> ret;
+ static std::vector<PipId> ret;
return ret;
}
-const vector<PipId> &Chip::getWireAliases(WireId wire) const
+const std::vector<PipId> &Chip::getWireAliases(WireId wire) const
{
- static vector<PipId> ret;
+ static std::vector<PipId> ret;
return ret;
}
-vector<GraphicElement> Chip::getBelGraphics(BelId bel) const
+std::vector<GraphicElement> Chip::getBelGraphics(BelId bel) const
{
- static vector<GraphicElement> ret;
+ static std::vector<GraphicElement> ret;
return ret;
}
-vector<GraphicElement> Chip::getWireGraphics(WireId wire) const
+std::vector<GraphicElement> Chip::getWireGraphics(WireId wire) const
{
- static vector<GraphicElement> ret;
+ static std::vector<GraphicElement> ret;
return ret;
}
-vector<GraphicElement> Chip::getPipGraphics(PipId pip) const
+std::vector<GraphicElement> Chip::getPipGraphics(PipId pip) const
{
- static vector<GraphicElement> ret;
+ static std::vector<GraphicElement> ret;
return ret;
}
-vector<GraphicElement> Chip::getFrameGraphics() const
+std::vector<GraphicElement> Chip::getFrameGraphics() const
{
- static vector<GraphicElement> ret;
+ static std::vector<GraphicElement> ret;
return ret;
}
diff --git a/dummy/chip.h b/dummy/chip.h
index 60db776e..3e98071e 100644
--- a/dummy/chip.h
+++ b/dummy/chip.h
@@ -74,44 +74,44 @@ struct Chip
void bindBel(BelId bel, IdString cell);
void unbindBel(BelId bel);
bool checkBelAvail(BelId bel) const;
- IdString getBelCell(BelId bel, bool conflicting=false) const;
- const vector<BelId> &getBels() const;
- const vector<BelId> &getBelsByType(BelType type) const;
+ IdString getBelCell(BelId bel, bool conflicting = false) const;
+ const std::vector<BelId> &getBels() const;
+ const std::vector<BelId> &getBelsByType(BelType type) const;
BelType getBelType(BelId bel) const;
WireId getWireBelPin(BelId bel, PortPin pin) const;
BelPin getBelPinUphill(WireId wire) const;
- const vector<BelPin> &getBelPinsDownhill(WireId wire) const;
+ const std::vector<BelPin> &getBelPinsDownhill(WireId wire) const;
WireId getWireByName(IdString name) const;
IdString getWireName(WireId wire) const;
void bindWire(WireId wire, IdString net);
void unbindWire(WireId wire);
bool checkWireAvail(WireId wire) const;
- IdString getWireNet(WireId wire, bool conflicting=false) const;
- const vector<WireId> &getWires() const;
+ IdString getWireNet(WireId wire, bool conflicting = false) const;
+ const std::vector<WireId> &getWires() const;
PipId getPipByName(IdString name) const;
IdString getPipName(PipId pip) const;
void bindPip(PipId pip, IdString net);
void unbindPip(PipId pip);
bool checkPipAvail(PipId pip) const;
- IdString getPipNet(PipId pip, bool conflicting=false) const;
- const vector<PipId> &getPips() const;
+ IdString getPipNet(PipId pip, bool conflicting = false) const;
+ const std::vector<PipId> &getPips() const;
WireId getPipSrcWire(PipId pip) const;
WireId getPipDstWire(PipId pip) const;
DelayInfo getPipDelay(PipId pip) const;
- const vector<PipId> &getPipsDownhill(WireId wire) const;
- const vector<PipId> &getPipsUphill(WireId wire) const;
- const vector<PipId> &getWireAliases(WireId wire) const;
+ const std::vector<PipId> &getPipsDownhill(WireId wire) const;
+ const std::vector<PipId> &getPipsUphill(WireId wire) const;
+ const std::vector<PipId> &getWireAliases(WireId wire) const;
void getBelPosition(BelId bel, float &x, float &y) const;
void getWirePosition(WireId wire, float &x, float &y) const;
void getPipPosition(PipId pip, float &x, float &y) const;
- vector<GraphicElement> getBelGraphics(BelId bel) const;
- vector<GraphicElement> getWireGraphics(WireId wire) const;
- vector<GraphicElement> getPipGraphics(PipId pip) const;
- vector<GraphicElement> getFrameGraphics() const;
+ std::vector<GraphicElement> getBelGraphics(BelId bel) const;
+ std::vector<GraphicElement> getWireGraphics(WireId wire) const;
+ std::vector<GraphicElement> getPipGraphics(PipId pip) const;
+ std::vector<GraphicElement> getFrameGraphics() const;
};
#endif
diff --git a/frontend/json/jsonparse.cc b/frontend/json/jsonparse.cc
index 761ad47e..fd44246a 100644
--- a/frontend/json/jsonparse.cc
+++ b/frontend/json/jsonparse.cc
@@ -45,9 +45,9 @@ struct JsonNode
char type; // S=String, N=Number, A=Array, D=Dict
string data_string;
int data_number;
- vector<JsonNode *> data_array;
- dict<string, JsonNode *> data_dict;
- vector<string> data_dict_keys;
+ std::vector<JsonNode *> data_array;
+ std::unordered_map<string, JsonNode *> data_dict;
+ std::vector<string> data_dict_keys;
JsonNode(std::istream &f)
{
@@ -314,7 +314,8 @@ bool is_blackbox(JsonNode *node)
void json_import_cell_params(Design *design, string &modname, CellInfo *cell,
JsonNode *param_node,
- dict<IdString, std::string> *dest, int param_id)
+ std::unordered_map<IdString, std::string> *dest,
+ int param_id)
{
//
JsonNode *param;
diff --git a/ice40/bitstream.cc b/ice40/bitstream.cc
index a6ab060f..944e80c2 100644
--- a/ice40/bitstream.cc
+++ b/ice40/bitstream.cc
@@ -49,7 +49,8 @@ std::tuple<int8_t, int8_t, int8_t> get_ieren(const BitstreamInfoPOD &bi,
return std::make_tuple(-1, -1, -1);
};
-void set_config(const TileInfoPOD &ti, vector<vector<int8_t>> &tile_cfg,
+void set_config(const TileInfoPOD &ti,
+ std::vector<std::vector<int8_t>> &tile_cfg,
const std::string &name, bool value, int index = -1)
{
const ConfigEntryPOD &cfg = find_config(ti, name);
@@ -78,7 +79,7 @@ void write_asc(const Design &design, std::ostream &out)
TileType tile = tile_at(chip, x, y);
int rows = bi.tiles_nonrouting[tile].rows;
int cols = bi.tiles_nonrouting[tile].cols;
- config.at(y).at(x).resize(rows, vector<int8_t>(cols));
+ config.at(y).at(x).resize(rows, std::vector<int8_t>(cols));
}
}
out << ".comment from next-pnr" << std::endl;
@@ -137,7 +138,7 @@ void write_asc(const Design &design, std::ostream &out)
bool async_sr = std::stoi(cell.second->params["ASYNC_SR"]);
bool set_noreset = std::stoi(cell.second->params["SET_NORESET"]);
bool carry_enable = std::stoi(cell.second->params["CARRY_ENABLE"]);
- vector<bool> lc(20, false);
+ std::vector<bool> lc(20, false);
// From arachne-pnr
static std::vector<int> lut_perm = {
4, 14, 15, 5, 6, 16, 17, 7, 3, 13, 12, 2, 1, 11, 10, 0,
diff --git a/ice40/chip.cc b/ice40/chip.cc
index e6116287..5f6560c5 100644
--- a/ice40/chip.cc
+++ b/ice40/chip.cc
@@ -231,9 +231,9 @@ void Chip::getPipPosition(PipId pip, float &x, float &y) const
y = chip_info.pip_data[pip.index].y;
}
-vector<GraphicElement> Chip::getBelGraphics(BelId bel) const
+std::vector<GraphicElement> Chip::getBelGraphics(BelId bel) const
{
- vector<GraphicElement> ret;
+ std::vector<GraphicElement> ret;
auto bel_type = getBelType(bel);
@@ -297,23 +297,23 @@ vector<GraphicElement> Chip::getBelGraphics(BelId bel) const
return ret;
}
-vector<GraphicElement> Chip::getWireGraphics(WireId wire) const
+std::vector<GraphicElement> Chip::getWireGraphics(WireId wire) const
{
- vector<GraphicElement> ret;
+ std::vector<GraphicElement> ret;
// FIXME
return ret;
}
-vector<GraphicElement> Chip::getPipGraphics(PipId pip) const
+std::vector<GraphicElement> Chip::getPipGraphics(PipId pip) const
{
- vector<GraphicElement> ret;
+ std::vector<GraphicElement> ret;
// FIXME
return ret;
}
-vector<GraphicElement> Chip::getFrameGraphics() const
+std::vector<GraphicElement> Chip::getFrameGraphics() const
{
- vector<GraphicElement> ret;
+ std::vector<GraphicElement> ret;
for (int x = 0; x <= chip_info.width; x++)
for (int y = 0; y <= chip_info.height; y++) {
diff --git a/ice40/chip.h b/ice40/chip.h
index b7492d2f..3ab3f3d2 100644
--- a/ice40/chip.h
+++ b/ice40/chip.h
@@ -406,14 +406,14 @@ struct Chip
{
ChipInfoPOD chip_info;
- mutable dict<IdString, int> bel_by_name;
- mutable dict<IdString, int> wire_by_name;
- mutable dict<IdString, int> pip_by_name;
-
- vector<IdString> bel_to_cell;
- vector<IdString> wire_to_net;
- vector<IdString> pip_to_net;
- vector<bool> switches_locked;
+ mutable std::unordered_map<IdString, int> bel_by_name;
+ mutable std::unordered_map<IdString, int> wire_by_name;
+ mutable std::unordered_map<IdString, int> pip_by_name;
+
+ std::vector<IdString> bel_to_cell;
+ std::vector<IdString> wire_to_net;
+ std::vector<IdString> pip_to_net;
+ std::vector<bool> switches_locked;
Chip(ChipArgs args);
ChipArgs args;
@@ -449,7 +449,7 @@ struct Chip
return bel_to_cell[bel.index] == IdString();
}
- IdString getBelCell(BelId bel, bool conflicting=false) const
+ IdString getBelCell(BelId bel, bool conflicting = false) const
{
assert(bel != BelId());
return bel_to_cell[bel.index];
@@ -539,7 +539,7 @@ struct Chip
return wire_to_net[wire.index] == IdString();
}
- IdString getWireNet(WireId wire, bool conflicting=false) const
+ IdString getWireNet(WireId wire, bool conflicting = false) const
{
assert(wire != WireId());
return wire_to_net[wire.index];
@@ -596,7 +596,7 @@ struct Chip
return !switches_locked[chip_info.pip_data[pip.index].switch_index];
}
- IdString getPipNet(PipId pip, bool conflicting=false) const
+ IdString getPipNet(PipId pip, bool conflicting = false) const
{
assert(pip != PipId());
return pip_to_net[pip.index];
@@ -669,10 +669,10 @@ struct Chip
void getWirePosition(WireId wire, float &x, float &y) const;
void getPipPosition(PipId pip, float &x, float &y) const;
- vector<GraphicElement> getBelGraphics(BelId bel) const;
- vector<GraphicElement> getWireGraphics(WireId wire) const;
- vector<GraphicElement> getPipGraphics(PipId pip) const;
- vector<GraphicElement> getFrameGraphics() const;
+ std::vector<GraphicElement> getBelGraphics(BelId bel) const;
+ std::vector<GraphicElement> getWireGraphics(WireId wire) const;
+ std::vector<GraphicElement> getPipGraphics(PipId pip) const;
+ std::vector<GraphicElement> getFrameGraphics() const;
};
#endif