]> git.lizzy.rs Git - rust.git/blob - src/librustc/mir/interpret/pointer.rs
4aa83a79d52b8bef5a187e14679eefde153417a2
[rust.git] / src / librustc / mir / interpret / pointer.rs
1 use std::fmt;
2
3 use crate::mir;
4 use crate::ty::layout::{self, HasDataLayout, Size};
5 use rustc_macros::HashStable;
6
7 use super::{
8     AllocId, EvalResult, CheckInAllocMsg
9 };
10
11 ////////////////////////////////////////////////////////////////////////////////
12 // Pointer arithmetic
13 ////////////////////////////////////////////////////////////////////////////////
14
15 pub trait PointerArithmetic: layout::HasDataLayout {
16     // These are not supposed to be overridden.
17
18     #[inline(always)]
19     fn pointer_size(&self) -> Size {
20         self.data_layout().pointer_size
21     }
22
23     /// Helper function: truncate given value-"overflowed flag" pair to pointer size and
24     /// update "overflowed flag" if there was an overflow.
25     /// This should be called by all the other methods before returning!
26     #[inline]
27     fn truncate_to_ptr(&self, (val, over): (u64, bool)) -> (u64, bool) {
28         let val = val as u128;
29         let max_ptr_plus_1 = 1u128 << self.pointer_size().bits();
30         ((val % max_ptr_plus_1) as u64, over || val >= max_ptr_plus_1)
31     }
32
33     #[inline]
34     fn overflowing_offset(&self, val: u64, i: u64) -> (u64, bool) {
35         let res = val.overflowing_add(i);
36         self.truncate_to_ptr(res)
37     }
38
39     // Overflow checking only works properly on the range from -u64 to +u64.
40     #[inline]
41     fn overflowing_signed_offset(&self, val: u64, i: i128) -> (u64, bool) {
42         // FIXME: is it possible to over/underflow here?
43         if i < 0 {
44             // Trickery to ensure that i64::min_value() works fine: compute n = -i.
45             // This formula only works for true negative values, it overflows for zero!
46             let n = u64::max_value() - (i as u64) + 1;
47             let res = val.overflowing_sub(n);
48             self.truncate_to_ptr(res)
49         } else {
50             self.overflowing_offset(val, i as u64)
51         }
52     }
53
54     #[inline]
55     fn offset<'tcx>(&self, val: u64, i: u64) -> EvalResult<'tcx, u64> {
56         let (res, over) = self.overflowing_offset(val, i);
57         if over { err!(Overflow(mir::BinOp::Add)) } else { Ok(res) }
58     }
59
60     #[inline]
61     fn signed_offset<'tcx>(&self, val: u64, i: i64) -> EvalResult<'tcx, u64> {
62         let (res, over) = self.overflowing_signed_offset(val, i128::from(i));
63         if over { err!(Overflow(mir::BinOp::Add)) } else { Ok(res) }
64     }
65 }
66
67 impl<T: layout::HasDataLayout> PointerArithmetic for T {}
68
69
70 /// Pointer is generic over the type that represents a reference to Allocations,
71 /// thus making it possible for the most convenient representation to be used in
72 /// each context.
73 ///
74 /// Defaults to the index based and loosely coupled AllocId.
75 ///
76 /// Pointer is also generic over the `Tag` associated with each pointer,
77 /// which is used to do provenance tracking during execution.
78 #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd,
79          RustcEncodable, RustcDecodable, Hash, HashStable)]
80 pub struct Pointer<Tag=(),Id=AllocId> {
81     pub alloc_id: Id,
82     pub offset: Size,
83     pub tag: Tag,
84 }
85
86 static_assert_size!(Pointer, 16);
87
88 impl<Tag: fmt::Debug, Id: fmt::Debug> fmt::Debug for Pointer<Tag, Id> {
89     default fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
90         write!(f, "{:?}.{:#x}[{:?}]", self.alloc_id, self.offset.bytes(), self.tag)
91     }
92 }
93 // Specialization for no tag
94 impl<Id: fmt::Debug> fmt::Debug for Pointer<(), Id> {
95     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
96         write!(f, "{:?}.{:#x}", self.alloc_id, self.offset.bytes())
97     }
98 }
99
100 /// Produces a `Pointer` which points to the beginning of the Allocation
101 impl From<AllocId> for Pointer {
102     #[inline(always)]
103     fn from(alloc_id: AllocId) -> Self {
104         Pointer::new(alloc_id, Size::ZERO)
105     }
106 }
107
108 impl<'tcx> Pointer<()> {
109     #[inline(always)]
110     pub fn new(alloc_id: AllocId, offset: Size) -> Self {
111         Pointer { alloc_id, offset, tag: () }
112     }
113
114     #[inline(always)]
115     pub fn with_tag<Tag>(self, tag: Tag) -> Pointer<Tag>
116     {
117         Pointer::new_with_tag(self.alloc_id, self.offset, tag)
118     }
119 }
120
121 impl<'tcx, Tag> Pointer<Tag> {
122     #[inline(always)]
123     pub fn new_with_tag(alloc_id: AllocId, offset: Size, tag: Tag) -> Self {
124         Pointer { alloc_id, offset, tag }
125     }
126
127     #[inline]
128     pub fn offset(self, i: Size, cx: &impl HasDataLayout) -> EvalResult<'tcx, Self> {
129         Ok(Pointer::new_with_tag(
130             self.alloc_id,
131             Size::from_bytes(cx.data_layout().offset(self.offset.bytes(), i.bytes())?),
132             self.tag
133         ))
134     }
135
136     #[inline]
137     pub fn overflowing_offset(self, i: Size, cx: &impl HasDataLayout) -> (Self, bool) {
138         let (res, over) = cx.data_layout().overflowing_offset(self.offset.bytes(), i.bytes());
139         (Pointer::new_with_tag(self.alloc_id, Size::from_bytes(res), self.tag), over)
140     }
141
142     #[inline(always)]
143     pub fn wrapping_offset(self, i: Size, cx: &impl HasDataLayout) -> Self {
144         self.overflowing_offset(i, cx).0
145     }
146
147     #[inline]
148     pub fn signed_offset(self, i: i64, cx: &impl HasDataLayout) -> EvalResult<'tcx, Self> {
149         Ok(Pointer::new_with_tag(
150             self.alloc_id,
151             Size::from_bytes(cx.data_layout().signed_offset(self.offset.bytes(), i)?),
152             self.tag,
153         ))
154     }
155
156     #[inline]
157     pub fn overflowing_signed_offset(self, i: i128, cx: &impl HasDataLayout) -> (Self, bool) {
158         let (res, over) = cx.data_layout().overflowing_signed_offset(self.offset.bytes(), i);
159         (Pointer::new_with_tag(self.alloc_id, Size::from_bytes(res), self.tag), over)
160     }
161
162     #[inline(always)]
163     pub fn wrapping_signed_offset(self, i: i64, cx: &impl HasDataLayout) -> Self {
164         self.overflowing_signed_offset(i128::from(i), cx).0
165     }
166
167     #[inline(always)]
168     pub fn erase_tag(self) -> Pointer {
169         Pointer { alloc_id: self.alloc_id, offset: self.offset, tag: () }
170     }
171
172     #[inline(always)]
173     pub fn check_in_alloc(
174         self,
175         allocation_size: Size,
176         msg: CheckInAllocMsg,
177     ) -> EvalResult<'tcx, ()> {
178         if self.offset > allocation_size {
179             err!(PointerOutOfBounds {
180                 ptr: self.erase_tag(),
181                 msg,
182                 allocation_size,
183             })
184         } else {
185             Ok(())
186         }
187     }
188 }