2013-01-05 04:13:26 -06:00
|
|
|
/*
|
|
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
|
|
*
|
2021-06-07 17:39:36 -05:00
|
|
|
* Copyright (C) 2012 Claire Xenia Wolf <claire@yosyshq.com>
|
2015-07-02 04:14:30 -05:00
|
|
|
*
|
2013-01-05 04:13:26 -06: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.
|
2015-07-02 04:14:30 -05:00
|
|
|
*
|
2013-01-05 04:13:26 -06:00
|
|
|
* 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 "kernel/register.h"
|
|
|
|
#include "kernel/sigtools.h"
|
|
|
|
#include "kernel/consteval.h"
|
|
|
|
#include "kernel/log.h"
|
|
|
|
#include <sstream>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
USING_YOSYS_NAMESPACE
|
|
|
|
PRIVATE_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
RTLIL::SigSpec find_any_lvalue(const RTLIL::Process *proc)
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
|
|
|
RTLIL::SigSpec lvalue;
|
|
|
|
|
|
|
|
for (auto sync : proc->syncs)
|
|
|
|
for (auto &action : sync->actions)
|
2014-07-22 13:15:14 -05:00
|
|
|
if (action.first.size() > 0) {
|
2013-01-05 04:13:26 -06:00
|
|
|
lvalue = action.first;
|
|
|
|
lvalue.sort_and_unify();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto sync : proc->syncs) {
|
|
|
|
RTLIL::SigSpec this_lvalue;
|
|
|
|
for (auto &action : sync->actions)
|
|
|
|
this_lvalue.append(action.first);
|
|
|
|
this_lvalue.sort_and_unify();
|
|
|
|
RTLIL::SigSpec common_sig = this_lvalue.extract(lvalue);
|
2014-07-22 13:15:14 -05:00
|
|
|
if (common_sig.size() > 0)
|
2013-01-05 04:13:26 -06:00
|
|
|
lvalue = common_sig;
|
|
|
|
}
|
|
|
|
|
|
|
|
return lvalue;
|
|
|
|
}
|
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
void gen_dffsr_complex(RTLIL::Module *mod, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, RTLIL::SigSpec clk, bool clk_polarity,
|
2024-08-28 09:38:27 -05:00
|
|
|
std::vector<std::pair<RTLIL::SigSpec, RTLIL::SyncRule*>> &async_rules, RTLIL::Process *proc)
|
2013-10-24 09:54:05 -05:00
|
|
|
{
|
2024-08-28 09:38:27 -05:00
|
|
|
// A signal should be set/cleared if there is a load trigger that is enabled
|
|
|
|
// such that the load value is 1/0 and it is the highest priority trigger
|
2014-07-22 13:15:14 -05:00
|
|
|
RTLIL::SigSpec sig_sr_set = RTLIL::SigSpec(0, sig_d.size());
|
|
|
|
RTLIL::SigSpec sig_sr_clr = RTLIL::SigSpec(0, sig_d.size());
|
2013-10-24 09:54:05 -05:00
|
|
|
|
2024-08-28 09:38:27 -05:00
|
|
|
// Reverse iterate through the rules as the first ones are the highest priority
|
|
|
|
// so need to be at the top of the mux trees
|
|
|
|
for (auto it = async_rules.crbegin(); it != async_rules.crend(); it++)
|
2013-10-24 09:54:05 -05:00
|
|
|
{
|
2024-08-28 09:38:27 -05:00
|
|
|
const auto& [sync_value, rule] = *it;
|
|
|
|
const auto pos_trig = rule->type == RTLIL::SyncType::ST1 ? rule->signal : mod->Not(NEW_ID, rule->signal);
|
2013-10-24 09:54:05 -05:00
|
|
|
|
2024-08-28 09:38:27 -05:00
|
|
|
// If pos_trig is true, we have priority at this point in the tree so
|
|
|
|
// set a bit if sync_value has a set bit. Otherwise, defer to the rest
|
|
|
|
// of the priority tree
|
|
|
|
sig_sr_set = mod->Mux(NEW_ID, sig_sr_set, sync_value, pos_trig);
|
2013-10-24 09:54:05 -05:00
|
|
|
|
2024-08-28 09:38:27 -05:00
|
|
|
// Same deal with clear bit
|
|
|
|
const auto sync_value_inv = mod->Not(NEW_ID, sync_value);
|
|
|
|
sig_sr_clr = mod->Mux(NEW_ID, sig_sr_clr, sync_value_inv, pos_trig);
|
2013-10-24 09:54:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
std::stringstream sstr;
|
2014-07-31 06:19:47 -05:00
|
|
|
sstr << "$procdff$" << (autoidx++);
|
2013-10-24 09:54:05 -05:00
|
|
|
|
2024-08-28 09:38:27 -05:00
|
|
|
RTLIL::Cell *cell = mod->addDffsr(sstr.str(), clk, sig_sr_set, sig_sr_clr, sig_d, sig_q, clk_polarity);
|
2013-10-24 09:54:05 -05:00
|
|
|
cell->attributes = proc->attributes;
|
|
|
|
|
|
|
|
log(" created %s cell `%s' with %s edge clock and multiple level-sensitive resets.\n",
|
|
|
|
cell->type.c_str(), cell->name.c_str(), clk_polarity ? "positive" : "negative");
|
|
|
|
}
|
|
|
|
|
2021-10-01 19:34:13 -05:00
|
|
|
void gen_aldff(RTLIL::Module *mod, RTLIL::SigSpec sig_in, RTLIL::SigSpec sig_set, RTLIL::SigSpec sig_out,
|
2013-10-18 06:26:52 -05:00
|
|
|
bool clk_polarity, bool set_polarity, RTLIL::SigSpec clk, RTLIL::SigSpec set, RTLIL::Process *proc)
|
|
|
|
{
|
|
|
|
std::stringstream sstr;
|
2014-07-31 06:19:47 -05:00
|
|
|
sstr << "$procdff$" << (autoidx++);
|
2013-10-18 06:26:52 -05:00
|
|
|
|
2021-10-01 19:34:13 -05:00
|
|
|
RTLIL::Cell *cell = mod->addCell(sstr.str(), ID($aldff));
|
2013-10-18 06:26:52 -05:00
|
|
|
cell->attributes = proc->attributes;
|
2021-10-01 19:34:13 -05:00
|
|
|
|
2020-04-02 11:51:32 -05:00
|
|
|
cell->parameters[ID::WIDTH] = RTLIL::Const(sig_in.size());
|
2021-10-01 19:34:13 -05:00
|
|
|
cell->parameters[ID::ALOAD_POLARITY] = RTLIL::Const(set_polarity, 1);
|
2020-04-02 11:51:32 -05:00
|
|
|
cell->parameters[ID::CLK_POLARITY] = RTLIL::Const(clk_polarity, 1);
|
|
|
|
cell->setPort(ID::D, sig_in);
|
|
|
|
cell->setPort(ID::Q, sig_out);
|
2021-10-01 19:34:13 -05:00
|
|
|
cell->setPort(ID::AD, sig_set);
|
2020-04-02 11:51:32 -05:00
|
|
|
cell->setPort(ID::CLK, clk);
|
2021-10-01 19:34:13 -05:00
|
|
|
cell->setPort(ID::ALOAD, set);
|
2013-10-18 06:26:52 -05:00
|
|
|
|
|
|
|
log(" created %s cell `%s' with %s edge clock and %s level non-const reset.\n", cell->type.c_str(), cell->name.c_str(),
|
|
|
|
clk_polarity ? "positive" : "negative", set_polarity ? "positive" : "negative");
|
|
|
|
}
|
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
void gen_dff(RTLIL::Module *mod, RTLIL::SigSpec sig_in, RTLIL::Const val_rst, RTLIL::SigSpec sig_out,
|
2013-01-05 04:13:26 -06:00
|
|
|
bool clk_polarity, bool arst_polarity, RTLIL::SigSpec clk, RTLIL::SigSpec *arst, RTLIL::Process *proc)
|
|
|
|
{
|
|
|
|
std::stringstream sstr;
|
2014-07-31 06:19:47 -05:00
|
|
|
sstr << "$procdff$" << (autoidx++);
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2020-04-02 11:51:32 -05:00
|
|
|
RTLIL::Cell *cell = mod->addCell(sstr.str(), clk.empty() ? ID($ff) : arst ? ID($adff) : ID($dff));
|
2013-01-05 04:13:26 -06:00
|
|
|
cell->attributes = proc->attributes;
|
|
|
|
|
2020-04-02 11:51:32 -05:00
|
|
|
cell->parameters[ID::WIDTH] = RTLIL::Const(sig_in.size());
|
2013-01-05 04:13:26 -06:00
|
|
|
if (arst) {
|
2020-04-02 11:51:32 -05:00
|
|
|
cell->parameters[ID::ARST_POLARITY] = RTLIL::Const(arst_polarity, 1);
|
|
|
|
cell->parameters[ID::ARST_VALUE] = val_rst;
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
2016-10-14 05:33:56 -05:00
|
|
|
if (!clk.empty()) {
|
2020-04-02 11:51:32 -05:00
|
|
|
cell->parameters[ID::CLK_POLARITY] = RTLIL::Const(clk_polarity, 1);
|
2016-10-14 05:33:56 -05:00
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2020-04-02 11:51:32 -05:00
|
|
|
cell->setPort(ID::D, sig_in);
|
|
|
|
cell->setPort(ID::Q, sig_out);
|
2013-01-05 04:13:26 -06:00
|
|
|
if (arst)
|
2020-04-02 11:51:32 -05:00
|
|
|
cell->setPort(ID::ARST, *arst);
|
2016-10-14 05:33:56 -05:00
|
|
|
if (!clk.empty())
|
2020-04-02 11:51:32 -05:00
|
|
|
cell->setPort(ID::CLK, clk);
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2016-10-14 05:33:56 -05:00
|
|
|
if (!clk.empty())
|
|
|
|
log(" created %s cell `%s' with %s edge clock", cell->type.c_str(), cell->name.c_str(), clk_polarity ? "positive" : "negative");
|
|
|
|
else
|
|
|
|
log(" created %s cell `%s' with global clock", cell->type.c_str(), cell->name.c_str());
|
2013-01-05 04:13:26 -06:00
|
|
|
if (arst)
|
2013-10-18 06:26:52 -05:00
|
|
|
log(" and %s level reset", arst_polarity ? "positive" : "negative");
|
2013-01-05 04:13:26 -06:00
|
|
|
log(".\n");
|
|
|
|
}
|
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
void proc_dff(RTLIL::Module *mod, RTLIL::Process *proc, ConstEval &ce)
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
RTLIL::SigSpec sig = find_any_lvalue(proc);
|
|
|
|
|
2014-07-22 13:15:14 -05:00
|
|
|
if (sig.size() == 0)
|
2013-01-05 04:13:26 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
log("Creating register for signal `%s.%s' using process `%s.%s'.\n",
|
|
|
|
mod->name.c_str(), log_signal(sig), mod->name.c_str(), proc->name.c_str());
|
|
|
|
|
2014-07-22 13:15:14 -05:00
|
|
|
RTLIL::SigSpec insig = RTLIL::SigSpec(RTLIL::State::Sz, sig.size());
|
2013-01-05 04:13:26 -06:00
|
|
|
RTLIL::SyncRule *sync_edge = NULL;
|
|
|
|
RTLIL::SyncRule *sync_always = NULL;
|
2016-10-14 05:33:56 -05:00
|
|
|
bool global_clock = false;
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2024-08-28 09:38:27 -05:00
|
|
|
// A priority ordered set of rules, pairing the value to be assigned for
|
|
|
|
// that rule to the rule
|
|
|
|
std::vector<std::pair<RTLIL::SigSpec, RTLIL::SyncRule*>> async_rules;
|
|
|
|
|
|
|
|
// Needed when the async rules are collapsed into one as async_rules
|
|
|
|
// works with pointers to SyncRule
|
|
|
|
RTLIL::SyncRule single_async_rule;
|
2013-10-21 07:51:58 -05:00
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
for (auto sync : proc->syncs)
|
|
|
|
for (auto &action : sync->actions)
|
|
|
|
{
|
2014-07-22 13:15:14 -05:00
|
|
|
if (action.first.extract(sig).size() == 0)
|
2013-01-05 04:13:26 -06:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (sync->type == RTLIL::SyncType::ST0 || sync->type == RTLIL::SyncType::ST1) {
|
2024-08-28 09:38:27 -05:00
|
|
|
RTLIL::SigSpec rstval = RTLIL::SigSpec(RTLIL::State::Sz, sig.size());
|
2013-01-05 04:13:26 -06:00
|
|
|
sig.replace(action.first, action.second, &rstval);
|
2024-08-28 09:38:27 -05:00
|
|
|
async_rules.emplace_back(rstval, sync);
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
else if (sync->type == RTLIL::SyncType::STp || sync->type == RTLIL::SyncType::STn) {
|
|
|
|
if (sync_edge != NULL && sync_edge != sync)
|
|
|
|
log_error("Multiple edge sensitive events found for this signal!\n");
|
|
|
|
sig.replace(action.first, action.second, &insig);
|
|
|
|
sync_edge = sync;
|
|
|
|
}
|
|
|
|
else if (sync->type == RTLIL::SyncType::STa) {
|
|
|
|
if (sync_always != NULL && sync_always != sync)
|
|
|
|
log_error("Multiple always events found for this signal!\n");
|
|
|
|
sig.replace(action.first, action.second, &insig);
|
|
|
|
sync_always = sync;
|
|
|
|
}
|
2016-10-14 05:33:56 -05:00
|
|
|
else if (sync->type == RTLIL::SyncType::STg) {
|
|
|
|
sig.replace(action.first, action.second, &insig);
|
|
|
|
global_clock = true;
|
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
else {
|
|
|
|
log_error("Event with any-edge sensitivity found for this signal!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
action.first.remove2(sig, &action.second);
|
|
|
|
}
|
|
|
|
|
2024-08-28 09:38:27 -05:00
|
|
|
// If all async rules assign the same value, priority ordering between
|
|
|
|
// them doesn't matter so they can be collapsed together into one rule
|
|
|
|
// with the disjunction of triggers
|
|
|
|
if (!async_rules.empty() &&
|
|
|
|
std::all_of(async_rules.begin(), async_rules.end(), [&](auto& p) {
|
|
|
|
return p.first == async_rules.front().first;
|
|
|
|
}))
|
2013-10-21 07:51:58 -05:00
|
|
|
{
|
2024-08-28 09:38:27 -05:00
|
|
|
const auto rstval = async_rules.front().first;
|
|
|
|
|
|
|
|
// The trigger is the disjunction of existing triggers
|
|
|
|
// (with appropriate negation)
|
|
|
|
RTLIL::SigSpec triggers;
|
|
|
|
for (const auto &[_, it] : async_rules)
|
|
|
|
triggers.append(it->type == RTLIL::SyncType::ST1 ? it->signal : mod->Not(NEW_ID, it->signal));
|
|
|
|
|
|
|
|
// Put this into the dummy sync rule so it can be treated the same
|
|
|
|
// as ones coming from the module
|
|
|
|
single_async_rule.type = RTLIL::SyncType::ST1;
|
|
|
|
single_async_rule.signal = mod->ReduceOr(NEW_ID, triggers);
|
|
|
|
single_async_rule.actions.push_back(RTLIL::SigSig(sig, rstval));
|
|
|
|
|
|
|
|
// Replace existing rules with this new rule
|
|
|
|
async_rules.clear();
|
|
|
|
async_rules.emplace_back(rstval, &single_async_rule);
|
2013-10-21 07:51:58 -05:00
|
|
|
}
|
|
|
|
|
2017-12-12 10:13:27 -06:00
|
|
|
SigSpec sig_q = sig;
|
2013-01-05 04:13:26 -06:00
|
|
|
ce.assign_map.apply(insig);
|
|
|
|
ce.assign_map.apply(sig);
|
|
|
|
|
2024-08-28 09:38:27 -05:00
|
|
|
// If the reset value assigns the reg to itself, add this as part of
|
|
|
|
// the input signal and delete the rule
|
|
|
|
if (async_rules.size() == 1 && async_rules.front().first == sig) {
|
|
|
|
const auto& [_, rule] = async_rules.front();
|
|
|
|
if (rule->type == RTLIL::SyncType::ST1)
|
|
|
|
insig = mod->Mux(NEW_ID, insig, sig, rule->signal);
|
2021-03-05 20:59:03 -06:00
|
|
|
else
|
2024-08-28 09:38:27 -05:00
|
|
|
insig = mod->Mux(NEW_ID, sig, insig, rule->signal);
|
|
|
|
|
|
|
|
async_rules.clear();
|
2014-06-19 05:29:29 -05:00
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
if (sync_always) {
|
2024-08-28 09:38:27 -05:00
|
|
|
if (sync_edge || !async_rules.empty())
|
2013-01-05 04:13:26 -06:00
|
|
|
log_error("Mixed always event with edge and/or level sensitive events!\n");
|
|
|
|
log(" created direct connection (no actual register cell created).\n");
|
2014-07-26 07:32:50 -05:00
|
|
|
mod->connect(RTLIL::SigSig(sig, insig));
|
2013-01-05 04:13:26 -06:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-10-14 05:33:56 -05:00
|
|
|
if (!sync_edge && !global_clock)
|
2013-01-05 04:13:26 -06:00
|
|
|
log_error("Missing edge-sensitive event for this signal!\n");
|
|
|
|
|
2024-08-28 09:38:27 -05:00
|
|
|
// More than one reset value so we derive a dffsr formulation
|
|
|
|
if (async_rules.size() > 1)
|
2013-10-21 07:51:58 -05:00
|
|
|
{
|
2014-11-09 03:44:23 -06:00
|
|
|
log_warning("Complex async reset for dff `%s'.\n", log_signal(sig));
|
2024-08-28 09:38:27 -05:00
|
|
|
gen_dffsr_complex(mod, insig, sig, sync_edge->signal, sync_edge->type == RTLIL::SyncType::STp, async_rules, proc);
|
|
|
|
return;
|
2013-10-21 07:51:58 -05:00
|
|
|
}
|
2024-08-28 09:38:27 -05:00
|
|
|
|
|
|
|
// If there is a reset condition in the async rules, use it
|
|
|
|
SigSpec rstval = async_rules.empty() ? RTLIL::SigSpec(RTLIL::State::Sz, sig.size()) : async_rules.front().first;
|
|
|
|
RTLIL::SyncRule* sync_level = async_rules.empty() ? nullptr : async_rules.front().second;
|
|
|
|
ce.assign_map.apply(rstval);
|
|
|
|
|
|
|
|
if (!rstval.is_fully_const() && !ce.eval(rstval))
|
2013-10-18 06:26:52 -05:00
|
|
|
{
|
2014-11-09 03:44:23 -06:00
|
|
|
log_warning("Async reset value `%s' is not constant!\n", log_signal(rstval));
|
2021-10-01 19:34:13 -05:00
|
|
|
gen_aldff(mod, insig, rstval, sig_q,
|
2013-10-18 06:26:52 -05:00
|
|
|
sync_edge->type == RTLIL::SyncType::STp,
|
|
|
|
sync_level && sync_level->type == RTLIL::SyncType::ST1,
|
|
|
|
sync_edge->signal, sync_level->signal, proc);
|
2024-08-28 09:38:27 -05:00
|
|
|
return;
|
2013-10-21 07:51:58 -05:00
|
|
|
}
|
|
|
|
|
2024-08-28 09:38:27 -05:00
|
|
|
gen_dff(mod, insig, rstval.as_const(), sig_q,
|
|
|
|
sync_edge && sync_edge->type == RTLIL::SyncType::STp,
|
|
|
|
sync_level && sync_level->type == RTLIL::SyncType::ST1,
|
|
|
|
sync_edge ? sync_edge->signal : SigSpec(),
|
|
|
|
sync_level ? &sync_level->signal : NULL, proc);
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ProcDffPass : public Pass {
|
2013-03-01 02:26:29 -06:00
|
|
|
ProcDffPass() : Pass("proc_dff", "extract flip-flops from processes") { }
|
2020-06-18 18:34:52 -05:00
|
|
|
void help() override
|
2013-03-01 02:26:29 -06:00
|
|
|
{
|
|
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
|
|
|
log("\n");
|
|
|
|
log(" proc_dff [selection]\n");
|
|
|
|
log("\n");
|
2013-03-17 16:02:30 -05:00
|
|
|
log("This pass identifies flip-flops in the processes and converts them to\n");
|
|
|
|
log("d-type flip-flop cells.\n");
|
2013-03-01 02:26:29 -06:00
|
|
|
log("\n");
|
|
|
|
}
|
2020-06-18 18:34:52 -05:00
|
|
|
void execute(std::vector<std::string> args, RTLIL::Design *design) override
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
2016-04-21 16:28:37 -05:00
|
|
|
log_header(design, "Executing PROC_DFF pass (convert process syncs to FFs).\n");
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
extra_args(args, 1, design);
|
|
|
|
|
2014-07-27 03:41:42 -05:00
|
|
|
for (auto mod : design->modules())
|
|
|
|
if (design->selected(mod)) {
|
|
|
|
ConstEval ce(mod);
|
|
|
|
for (auto &proc_it : mod->processes)
|
|
|
|
if (design->selected(mod, proc_it.second))
|
|
|
|
proc_dff(mod, proc_it.second, ce);
|
2013-03-01 02:26:29 -06:00
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
} ProcDffPass;
|
2015-07-02 04:14:30 -05:00
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
PRIVATE_NAMESPACE_END
|