aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2015-01-01 11:41:52 +0100
committerClifford Wolf <clifford@clifford.at>2015-01-01 11:41:52 +0100
commite62d838bd424995d2fcdc9cef1f56752905c3b4d (patch)
tree1699bd05ec11dcf7cd38e1141eeeb58019008908
parent327a5d42b6b396f1c210f1579d03a0806a261d84 (diff)
downloadyosys-e62d838bd424995d2fcdc9cef1f56752905c3b4d.tar.gz
yosys-e62d838bd424995d2fcdc9cef1f56752905c3b4d.tar.bz2
yosys-e62d838bd424995d2fcdc9cef1f56752905c3b4d.zip
Removed SigSpec::extend_xx() api
-rw-r--r--kernel/rtlil.cc18
-rw-r--r--kernel/rtlil.h1
-rw-r--r--passes/proc/proc_arst.cc2
3 files changed, 1 insertions, 20 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc
index cd2232c8c..d396d6c24 100644
--- a/kernel/rtlil.cc
+++ b/kernel/rtlil.cc
@@ -2673,24 +2673,6 @@ void RTLIL::SigSpec::append_bit(const RTLIL::SigBit &bit)
check();
}
-void RTLIL::SigSpec::extend_xx(int width, bool is_signed)
-{
- cover("kernel.rtlil.sigspec.extend_xx");
-
- pack();
-
- if (width_ > width)
- remove(width, width_ - width);
-
- if (width_ < width) {
- RTLIL::SigBit padding = width_ > 0 ? (*this)[width_ - 1] : RTLIL::State::S0;
- if (!is_signed && (padding == RTLIL::State::S1 || padding.wire))
- padding = RTLIL::State::S0;
- while (width_ < width)
- append(padding);
- }
-}
-
void RTLIL::SigSpec::extend_u0(int width, bool is_signed)
{
cover("kernel.rtlil.sigspec.extend_u0");
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index 7618780b0..53ee24c22 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -651,7 +651,6 @@ public:
void append(const RTLIL::SigSpec &signal);
void append_bit(const RTLIL::SigBit &bit);
- void extend_xx(int width, bool is_signed = false);
void extend_u0(int width, bool is_signed = false);
RTLIL::SigSpec repeat(int num) const;
diff --git a/passes/proc/proc_arst.cc b/passes/proc/proc_arst.cc
index 0874d0981..27c6b3bcf 100644
--- a/passes/proc/proc_arst.cc
+++ b/passes/proc/proc_arst.cc
@@ -262,7 +262,7 @@ struct ProcArstPass : public Pass {
for (auto &chunk : act.first.chunks())
if (chunk.wire && chunk.wire->attributes.count("\\init")) {
RTLIL::SigSpec value = chunk.wire->attributes.at("\\init");
- value.extend_xx(chunk.wire->width, false);
+ value.extend_u0(chunk.wire->width, false);
arst_sig.append(chunk);
arst_val.append(value.extract(chunk.offset, chunk.width));
}