]> git.lizzy.rs Git - rust.git/commitdiff
add assert_{bits,ptr}; document which methods we hope to get rid of
authorRalf Jung <post@ralfj.de>
Fri, 5 Jul 2019 19:06:31 +0000 (21:06 +0200)
committerRalf Jung <post@ralfj.de>
Sat, 6 Jul 2019 08:02:15 +0000 (10:02 +0200)
src/librustc/mir/interpret/value.rs

index 867565d5e0922bec9359ea8d1369dfcb7ca35abb..c9c1d3146e3e64390fe024809df4407b85757fa6 100644 (file)
@@ -339,6 +339,10 @@ pub fn from_f64(f: Double) -> Self {
         Scalar::Raw { data: f.to_bits(), size: 8 }
     }
 
+    /// This is very rarely the method you want!  You should dispatch on the type
+    /// and use `force_bits`/`assert_bits`/`force_ptr`/`assert_ptr`.
+    /// This method only exists for the benefit of low-level memory operations
+    /// as well as the implementation of the `force_*` methods.
     #[inline]
     pub fn to_bits_or_ptr(
         self,
@@ -359,6 +363,7 @@ pub fn to_bits_or_ptr(
         }
     }
 
+    /// Do not call this method!  Use either `assert_bits` or `force_bits`.
     #[inline]
     pub fn to_bits(self, target_size: Size) -> InterpResult<'tcx, u128> {
         match self {
@@ -372,6 +377,12 @@ pub fn to_bits(self, target_size: Size) -> InterpResult<'tcx, u128> {
         }
     }
 
+    #[inline(always)]
+    pub fn assert_bits(self, target_size: Size) -> u128 {
+        self.to_bits(target_size).expect("Expected Raw bits but got a Pointer")
+    }
+
+    /// Do not call this method!  Use either `assert_ptr` or `force_ptr`.
     #[inline]
     pub fn to_ptr(self) -> InterpResult<'tcx, Pointer<Tag>> {
         match self {
@@ -381,6 +392,12 @@ pub fn to_ptr(self) -> InterpResult<'tcx, Pointer<Tag>> {
         }
     }
 
+    #[inline(always)]
+    pub fn assert_ptr(self) -> Pointer<Tag> {
+        self.to_ptr().expect("Expected a Pointer but got Raw bits")
+    }
+
+    /// Do not call this method!  Dispatch based on the type instead.
     #[inline]
     pub fn is_bits(self) -> bool {
         match self {
@@ -389,6 +406,7 @@ pub fn is_bits(self) -> bool {
         }
     }
 
+    /// Do not call this method!  Dispatch based on the type instead.
     #[inline]
     pub fn is_ptr(self) -> bool {
         match self {
@@ -536,11 +554,13 @@ pub fn not_undef(self) -> InterpResult<'static, Scalar<Tag>> {
         }
     }
 
+    /// Do not call this method!  Use either `assert_ptr` or `force_ptr`.
     #[inline(always)]
     pub fn to_ptr(self) -> InterpResult<'tcx, Pointer<Tag>> {
         self.not_undef()?.to_ptr()
     }
 
+    /// Do not call this method!  Use either `assert_bits` or `force_bits`.
     #[inline(always)]
     pub fn to_bits(self, target_size: Size) -> InterpResult<'tcx, u128> {
         self.not_undef()?.to_bits(target_size)