mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #413 from azonenberg/extract-reduce-tweaks
Added support for off-chain loads in extract_reduce
This commit is contained in:
commit
143c0abd33
|
@ -37,7 +37,7 @@ struct ExtractReducePass : public Pass
|
||||||
{
|
{
|
||||||
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
||||||
log("\n");
|
log("\n");
|
||||||
log(" extract_reduce [selection]\n");
|
log(" extract_reduce [options] [selection]\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
log("converts gate chains into $reduce_* cells\n");
|
log("converts gate chains into $reduce_* cells\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
|
@ -48,6 +48,18 @@ struct ExtractReducePass : public Pass
|
||||||
log("to map the design to only $_AND_ cells, run extract_reduce, map the remaining\n");
|
log("to map the design to only $_AND_ cells, run extract_reduce, map the remaining\n");
|
||||||
log("parts of the design to AND/OR/XOR cells, and run extract_reduce a second time.\n");
|
log("parts of the design to AND/OR/XOR cells, and run extract_reduce a second time.\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
|
log(" -allow-off-chain\n");
|
||||||
|
log(" Allows matching of cells that have loads outside the chain. These cells\n");
|
||||||
|
log(" will be replicated and folded into the $reduce_* cell, but the original\n");
|
||||||
|
log(" cell will remain, driving its original loads.\n");
|
||||||
|
log("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
inline bool IsRightType(Cell* cell, GateType gt)
|
||||||
|
{
|
||||||
|
return (cell->type == "$_AND_" && gt == GateType::And) ||
|
||||||
|
(cell->type == "$_OR_" && gt == GateType::Or) ||
|
||||||
|
(cell->type == "$_XOR_" && gt == GateType::Xor);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
||||||
|
@ -56,12 +68,14 @@ struct ExtractReducePass : public Pass
|
||||||
log_push();
|
log_push();
|
||||||
|
|
||||||
size_t argidx;
|
size_t argidx;
|
||||||
|
bool allow_off_chain = false;
|
||||||
for (argidx = 1; argidx < args.size(); argidx++)
|
for (argidx = 1; argidx < args.size(); argidx++)
|
||||||
{
|
{
|
||||||
// if (args[argidx] == "-v") {
|
if (args[argidx] == "-allow-off-chain")
|
||||||
// verbose = true;
|
{
|
||||||
// continue;
|
allow_off_chain = true;
|
||||||
// }
|
continue;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
extra_args(args, argidx, design);
|
extra_args(args, argidx, design);
|
||||||
|
@ -120,14 +134,15 @@ struct ExtractReducePass : public Pass
|
||||||
|
|
||||||
log("Working on cell %s...\n", cell->name.c_str());
|
log("Working on cell %s...\n", cell->name.c_str());
|
||||||
|
|
||||||
// Go all the way to the sink
|
// If looking for a single chain, follow linearly to the sink
|
||||||
|
pool<Cell*> sinks;
|
||||||
|
if(!allow_off_chain)
|
||||||
|
{
|
||||||
Cell* head_cell = cell;
|
Cell* head_cell = cell;
|
||||||
Cell* x = cell;
|
Cell* x = cell;
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
if (!((x->type == "$_AND_" && gt == GateType::And) ||
|
if(!IsRightType(x, gt))
|
||||||
(x->type == "$_OR_" && gt == GateType::Or) ||
|
|
||||||
(x->type == "$_XOR_" && gt == GateType::Xor)))
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
head_cell = x;
|
head_cell = x;
|
||||||
|
@ -142,8 +157,72 @@ struct ExtractReducePass : public Pass
|
||||||
x = *sig_to_sink[y[0]].begin();
|
x = *sig_to_sink[y[0]].begin();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sinks.insert(head_cell);
|
||||||
|
}
|
||||||
|
|
||||||
|
//If off-chain loads are allowed, we have to do a wider traversal to see what the longest chain is
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//BFS, following all chains until they hit a cell of a different type
|
||||||
|
//Pick the longest one
|
||||||
|
auto y = sigmap(cell->getPort("\\Y"));
|
||||||
|
pool<Cell*> current_loads = sig_to_sink[y];
|
||||||
|
pool<Cell*> next_loads;
|
||||||
|
|
||||||
|
while(!current_loads.empty())
|
||||||
|
{
|
||||||
|
//Find each sink and see what they are
|
||||||
|
for(auto x : current_loads)
|
||||||
|
{
|
||||||
|
//Not one of our gates? Don't follow any further
|
||||||
|
//(but add the originating cell to the list of sinks)
|
||||||
|
if(!IsRightType(x, gt))
|
||||||
|
{
|
||||||
|
sinks.insert(cell);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
//If this signal drives a port, add it to the sinks
|
||||||
|
//(even though it may not be the end of a chain)
|
||||||
|
if(port_sigs.count(x) && !consumed_cells.count(x))
|
||||||
|
sinks.insert(x);
|
||||||
|
|
||||||
|
//It's a match, search everything out from it
|
||||||
|
auto& next = sig_to_sink[x];
|
||||||
|
for(auto z : next)
|
||||||
|
next_loads.insert(z);
|
||||||
|
}
|
||||||
|
|
||||||
|
//If we couldn't find any downstream loads, stop.
|
||||||
|
//Create a reduction for each of the max-length chains we found
|
||||||
|
if(next_loads.empty())
|
||||||
|
{
|
||||||
|
for(auto s : current_loads)
|
||||||
|
{
|
||||||
|
//Not one of our gates? Don't follow any further
|
||||||
|
if(!IsRightType(s, gt))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
sinks.insert(s);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Otherwise, continue down the chain
|
||||||
|
current_loads = next_loads;
|
||||||
|
next_loads.clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//We have our list, go act on it
|
||||||
|
for(auto head_cell : sinks)
|
||||||
|
{
|
||||||
log(" Head cell is %s\n", head_cell->name.c_str());
|
log(" Head cell is %s\n", head_cell->name.c_str());
|
||||||
|
|
||||||
|
//Avoid duplication if we already were covered
|
||||||
|
if(consumed_cells.count(head_cell))
|
||||||
|
continue;
|
||||||
|
|
||||||
pool<Cell*> cur_supercell;
|
pool<Cell*> cur_supercell;
|
||||||
std::deque<Cell*> bfs_queue = {head_cell};
|
std::deque<Cell*> bfs_queue = {head_cell};
|
||||||
while (bfs_queue.size())
|
while (bfs_queue.size())
|
||||||
|
@ -155,16 +234,15 @@ struct ExtractReducePass : public Pass
|
||||||
|
|
||||||
auto a = sigmap(x->getPort("\\A"));
|
auto a = sigmap(x->getPort("\\A"));
|
||||||
log_assert(a.size() == 1);
|
log_assert(a.size() == 1);
|
||||||
// Must have only one sink
|
|
||||||
|
// Must have only one sink unless we're going off chain
|
||||||
// XXX: Check that it is indeed this node?
|
// XXX: Check that it is indeed this node?
|
||||||
if (sig_to_sink[a[0]].size() + port_sigs.count(a[0]) == 1)
|
if( allow_off_chain || (sig_to_sink[a[0]].size() + port_sigs.count(a[0]) == 1) )
|
||||||
{
|
{
|
||||||
Cell* cell_a = sig_to_driver[a[0]];
|
Cell* cell_a = sig_to_driver[a[0]];
|
||||||
if (cell_a && ((cell_a->type == "$_AND_" && gt == GateType::And) ||
|
if(cell_a && IsRightType(cell_a, gt))
|
||||||
(cell_a->type == "$_OR_" && gt == GateType::Or) ||
|
|
||||||
(cell_a->type == "$_XOR_" && gt == GateType::Xor)))
|
|
||||||
{
|
{
|
||||||
// The cell here is the correct type, and it's definitely driving only
|
// The cell here is the correct type, and it's definitely driving
|
||||||
// this current cell.
|
// this current cell.
|
||||||
bfs_queue.push_back(cell_a);
|
bfs_queue.push_back(cell_a);
|
||||||
}
|
}
|
||||||
|
@ -172,14 +250,13 @@ struct ExtractReducePass : public Pass
|
||||||
|
|
||||||
auto b = sigmap(x->getPort("\\B"));
|
auto b = sigmap(x->getPort("\\B"));
|
||||||
log_assert(b.size() == 1);
|
log_assert(b.size() == 1);
|
||||||
|
|
||||||
// Must have only one sink
|
// Must have only one sink
|
||||||
// XXX: Check that it is indeed this node?
|
// XXX: Check that it is indeed this node?
|
||||||
if (sig_to_sink[b[0]].size() + port_sigs.count(b[0]) == 1)
|
if( allow_off_chain || (sig_to_sink[b[0]].size() + port_sigs.count(b[0]) == 1) )
|
||||||
{
|
{
|
||||||
Cell* cell_b = sig_to_driver[b[0]];
|
Cell* cell_b = sig_to_driver[b[0]];
|
||||||
if (cell_b && ((cell_b->type == "$_AND_" && gt == GateType::And) ||
|
if(cell_b && IsRightType(cell_b, gt))
|
||||||
(cell_b->type == "$_OR_" && gt == GateType::Or) ||
|
|
||||||
(cell_b->type == "$_XOR_" && gt == GateType::Xor)))
|
|
||||||
{
|
{
|
||||||
// The cell here is the correct type, and it's definitely driving only
|
// The cell here is the correct type, and it's definitely driving only
|
||||||
// this current cell.
|
// this current cell.
|
||||||
|
@ -222,12 +299,19 @@ struct ExtractReducePass : public Pass
|
||||||
new_reduce_cell->setPort("\\A", input);
|
new_reduce_cell->setPort("\\A", input);
|
||||||
new_reduce_cell->setPort("\\Y", output);
|
new_reduce_cell->setPort("\\Y", output);
|
||||||
|
|
||||||
|
if(allow_off_chain)
|
||||||
|
consumed_cells.insert(head_cell);
|
||||||
|
else
|
||||||
|
{
|
||||||
for (auto x : cur_supercell)
|
for (auto x : cur_supercell)
|
||||||
consumed_cells.insert(x);
|
consumed_cells.insert(x);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Remove every cell that we've used up
|
// Remove all of the head cells, since we supplant them.
|
||||||
|
// Do not remove the upstream cells since some might still be in use ("clean" will get rid of unused ones)
|
||||||
for (auto cell : consumed_cells)
|
for (auto cell : consumed_cells)
|
||||||
module->remove(cell);
|
module->remove(cell);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue