1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//! Pointer methods for Rustc versions before 1.26.0.

// POINTER METHODS

// Certain pointer methods aren't implemented below Rustc versions 1.26.
// We implement a dummy version here.

pub(crate) trait PointerMethods {
    // Add to the pointer (use padd to avoid conflict with ptr::add).
    unsafe fn padd(self, count: usize) -> Self;

    // Subtract from the pointer (use psub to avoid conflict with ptr::sub).
    unsafe fn psub(self, count: usize) -> Self;
}

impl<T> PointerMethods for *const T {
    #[inline(always)]
    unsafe fn padd(self, count: usize) -> Self {
        #[cfg(has_pointer_methods)]
        return self.add(count);

        #[cfg(not(has_pointer_methods))]
        return self.offset(count as isize);
    }

    #[inline(always)]
    unsafe fn psub(self, count: usize) -> Self {
        #[cfg(has_pointer_methods)]
        return self.sub(count);

        #[cfg(not(has_pointer_methods))]
        return self.offset((count as isize).wrapping_neg());
    }
}

impl<T> PointerMethods for *mut T {
    #[inline(always)]
    unsafe fn padd(self, count: usize) -> Self {
        #[cfg(has_pointer_methods)]
        return self.add(count);

        #[cfg(not(has_pointer_methods))]
        return self.offset(count as isize);
    }

    #[inline(always)]
    unsafe fn psub(self, count: usize) -> Self {
        #[cfg(has_pointer_methods)]
        return self.sub(count);

        #[cfg(not(has_pointer_methods))]
        return self.offset((count as isize).wrapping_neg());
    }
}