+2016-12-02 Martin Liska <mliska@suse.cz>
+
+ PR ipa/78555
+ * sreal.c (sreal::to_int): Make absolute value before shifting.
+ (sreal::operator/): Likewise.
+ (sreal_verify_negative_division): New test.
+ (void sreal_c_tests): Call the new test.
+ * sreal.h (sreal::normalize_up): Use new SREAL_ABS and
+ SREAL_SIGN macros.
+ (sreal::normalize_down): Likewise.
+
2016-12-02 Dominik Vogt <vogt@linux.vnet.ibm.com>
* combine.c (combine_simplify_rtx): Suppress replacement of
int64_t
sreal::to_int () const
{
- int64_t sign = m_sig < 0 ? -1 : 1;
+ int64_t sign = SREAL_SIGN (m_sig);
if (m_exp <= -SREAL_BITS)
return 0;
if (m_exp >= SREAL_PART_BITS)
return sign * INTTYPE_MAXIMUM (int64_t);
if (m_exp > 0)
- return m_sig << m_exp;
+ return sign * (SREAL_ABS (m_sig) << m_exp);
if (m_exp < 0)
return m_sig >> -m_exp;
return m_sig;
{
gcc_checking_assert (other.m_sig != 0);
sreal r;
- r.m_sig = (m_sig << SREAL_PART_BITS) / other.m_sig;
+ r.m_sig
+ = SREAL_SIGN (m_sig) * (SREAL_ABS (m_sig) << SREAL_PART_BITS) / other.m_sig;
r.m_exp = m_exp - other.m_exp - SREAL_PART_BITS;
r.normalize ();
return r;
verify_shifting (values[i]);
}
+/* Verify division by (of) a negative value. */
+
+static void
+sreal_verify_negative_division (void)
+{
+ ASSERT_EQ (sreal (1) / sreal (1), sreal (1));
+ ASSERT_EQ (sreal (-1) / sreal (-1), sreal (1));
+ ASSERT_EQ (sreal (-1234567) / sreal (-1234567), sreal (1));
+ ASSERT_EQ (sreal (-1234567) / sreal (1234567), sreal (-1));
+ ASSERT_EQ (sreal (1234567) / sreal (-1234567), sreal (-1));
+}
+
/* Run all of the selftests within this file. */
void sreal_c_tests ()
sreal_verify_basics ();
sreal_verify_arithmetics ();
sreal_verify_shifting ();
+ sreal_verify_negative_division ();
}
} // namespace selftest
#define SREAL_BITS SREAL_PART_BITS
+#define SREAL_SIGN(v) (v < 0 ? -1: 1)
+#define SREAL_ABS(v) (v < 0 ? -v: v)
+
/* Structure for holding a simple real number. */
class sreal
{
inline void
sreal::normalize_up ()
{
- int64_t s = m_sig < 0 ? -1 : 1;
unsigned HOST_WIDE_INT sig = absu_hwi (m_sig);
int shift = SREAL_PART_BITS - 2 - floor_log2 (sig);
m_exp = -SREAL_MAX_EXP;
sig = 0;
}
- if (s == -1)
+ if (SREAL_SIGN (m_sig) == -1)
m_sig = -sig;
else
m_sig = sig;
inline void
sreal::normalize_down ()
{
- int64_t s = m_sig < 0 ? -1 : 1;
int last_bit;
unsigned HOST_WIDE_INT sig = absu_hwi (m_sig);
int shift = floor_log2 (sig) - SREAL_PART_BITS + 2;
m_exp = SREAL_MAX_EXP;
sig = SREAL_MAX_SIG;
}
- if (s == -1)
+ if (SREAL_SIGN (m_sig) == -1)
m_sig = -sig;
else
m_sig = sig;