OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Crashpad Authors. All rights reserved. | |
2 // | |
3 // Licensed under the Apache License, Version 2.0 (the "License"); | |
4 // you may not use this file except in compliance with the License. | |
5 // You may obtain a copy of the License at | |
6 // | |
7 // http://www.apache.org/licenses/LICENSE-2.0 | |
8 // | |
9 // Unless required by applicable law or agreed to in writing, software | |
10 // distributed under the License is distributed on an "AS IS" BASIS, | |
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 // See the License for the specific language governing permissions and | |
13 // limitations under the License. | |
14 | |
15 #ifndef CRASHPAD_UTIL_WIN_CHECKED_WIN_ADDRESS_RANGE_H_ | |
16 #define CRASHPAD_UTIL_WIN_CHECKED_WIN_ADDRESS_RANGE_H_ | |
17 | |
18 #include "util/numeric/checked_address_range.h" | |
19 #include "util/win/address_types.h" | |
20 | |
21 namespace crashpad { | |
22 | |
23 //! \brief Ensures that a range, composed of a base and a size, does not | |
24 //! overflow the pointer type of the process it describes a range in. | |
25 //! | |
26 //! This class checks bases of type `win_vm_address_t` and sizes of type | |
Mark Mentovai
2015/05/01 19:05:31
If you rename these to WinVMAddress and WinVMSize,
scottmg
2015/05/01 19:46:32
Done.
| |
27 //! `mach_vm_size_t` against a process whose pointer type is either 32 or 64 | |
Mark Mentovai
2015/05/01 19:05:31
This one shouldn’t talk about Mach.
scottmg
2015/05/01 19:46:32
Done.
| |
28 //! bits wide. | |
29 //! | |
30 //! Aside from varying the overall range on the basis of a process' pointer type | |
31 //! width, this class functions very similarly to CheckedRange. | |
32 using CheckedWinAddressRange = | |
33 CheckedAddressRangeGeneric<win_vm_address_t, win_vm_size_t>; | |
34 | |
35 } // namespace crashpad | |
36 | |
37 #endif // CRASHPAD_UTIL_WIN_CHECKED_WIN_ADDRESS_RANGE_H_ | |
OLD | NEW |