]> git.lizzy.rs Git - rust.git/commitdiff
change PartialEq impl for ConstVal so that two constants are `==`
authorNiko Matsakis <niko@alum.mit.edu>
Tue, 29 Sep 2015 21:08:05 +0000 (17:08 -0400)
committerNiko Matsakis <niko@alum.mit.edu>
Mon, 5 Oct 2015 01:19:45 +0000 (21:19 -0400)
if they represent the same constant; otherwise the match algorithm
goes into infinite recursion when a pattern contains `NaN`

src/librustc/middle/const_eval.rs
src/librustc_mir/repr.rs

index 78acff0ada389bc9a47b0df06ca934c1daaaf6be..acda0fe2f0e3532ffd25fe837616a220e6caa5d5 100644 (file)
@@ -38,6 +38,7 @@
 use std::num::wrapping::OverflowingOps;
 use std::cmp::Ordering;
 use std::collections::hash_map::Entry::Vacant;
+use std::mem::transmute;
 use std::{i8, i16, i32, i64, u8, u16, u32, u64};
 use std::rc::Rc;
 
@@ -242,7 +243,7 @@ pub fn lookup_const_fn_by_id<'tcx>(tcx: &ty::ctxt<'tcx>, def_id: DefId)
     }
 }
 
-#[derive(Clone, Debug, PartialEq)]
+#[derive(Clone, Debug)]
 pub enum ConstVal {
     Float(f64),
     Int(i64),
@@ -254,6 +255,27 @@ pub enum ConstVal {
     Tuple(ast::NodeId),
 }
 
+/// Note that equality for `ConstVal` means that the it is the same
+/// constant, not that the rust values are equal. In particular, `NaN
+/// == NaN` (at least if it's the same NaN; distinct encodings for NaN
+/// are considering unequal).
+impl PartialEq for ConstVal {
+    #[stable(feature = "rust1", since = "1.0.0")]
+    fn eq(&self, other: &ConstVal) -> bool {
+        match (self, other) {
+            (&Float(a), &Float(b)) => unsafe{transmute::<_,u64>(a) == transmute::<_,u64>(b)},
+            (&Int(a), &Int(b)) => a == b,
+            (&Uint(a), &Uint(b)) => a == b,
+            (&Str(ref a), &Str(ref b)) => a == b,
+            (&ByteStr(ref a), &ByteStr(ref b)) => a == b,
+            (&Bool(a), &Bool(b)) => a == b,
+            (&Struct(a), &Struct(b)) => a == b,
+            (&Tuple(a), &Tuple(b)) => a == b,
+            _ => false,
+        }
+    }
+}
+
 impl ConstVal {
     pub fn description(&self) -> &'static str {
         match *self {
index e5a03cbb5864c9990bc9a92233eedb9e2cef1bd4..d522518a3d4afbda1b8ab9d1ef70662fd0b52dd5 100644 (file)
@@ -642,6 +642,10 @@ fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error> {
 
 ///////////////////////////////////////////////////////////////////////////
 // Constants
+//
+// Two constants are equal if they are the same constant. Note that
+// this does not necessarily mean that they are "==" in Rust -- in
+// particular one must be wary of `NaN`!
 
 #[derive(Clone, Debug, PartialEq)]
 pub struct Constant<H:Hair> {
@@ -655,3 +659,4 @@ pub enum Literal<H:Hair> {
     Item { def_id: H::DefId, substs: H::Substs },
     Value { value: H::ConstVal },
 }
+