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 WinVMAddress and sizes of type WinVMSize |
| 27 //! against a process whose pointer type is either 32 or 64 bits wide. |
| 28 //! |
| 29 //! Aside from varying the overall range on the basis of a process' pointer type |
| 30 //! width, this class functions very similarly to CheckedRange. |
| 31 using CheckedWinAddressRange = |
| 32 internal::CheckedAddressRangeGeneric<WinVMAddress, WinVMSize>; |
| 33 |
| 34 } // namespace crashpad |
| 35 |
| 36 #endif // CRASHPAD_UTIL_WIN_CHECKED_WIN_ADDRESS_RANGE_H_ |
OLD | NEW |