| OLD | NEW |
| 1 // Copyright 2014 The Crashpad Authors. All rights reserved. | 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
| 2 // | 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with 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 | 5 // You may obtain a copy of the License at |
| 6 // | 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // | 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 // See the License for the specific language governing permissions and | 12 // See the License for the specific language governing permissions and |
| 13 // limitations under the License. | 13 // limitations under the License. |
| 14 | 14 |
| 15 #include "util/mac/process_reader.h" | 15 #include "snapshot/mac/process_reader.h" |
| 16 | 16 |
| 17 #include <AvailabilityMacros.h> | 17 #include <AvailabilityMacros.h> |
| 18 #include <mach/mach_vm.h> | 18 #include <mach/mach_vm.h> |
| 19 #include <mach-o/loader.h> | 19 #include <mach-o/loader.h> |
| 20 | 20 |
| 21 #include <algorithm> | 21 #include <algorithm> |
| 22 | 22 |
| 23 #include "base/logging.h" | 23 #include "base/logging.h" |
| 24 #include "base/mac/mach_logging.h" | 24 #include "base/mac/mach_logging.h" |
| 25 #include "base/mac/scoped_mach_port.h" | 25 #include "base/mac/scoped_mach_port.h" |
| 26 #include "base/mac/scoped_mach_vm.h" | 26 #include "base/mac/scoped_mach_vm.h" |
| 27 #include "base/strings/stringprintf.h" | 27 #include "base/strings/stringprintf.h" |
| 28 #include "util/mac/mach_o_image_reader.h" | 28 #include "snapshot/mac/mach_o_image_reader.h" |
| 29 #include "util/mac/process_types.h" | 29 #include "snapshot/mac/process_types.h" |
| 30 #include "util/misc/scoped_forbid_return.h" | 30 #include "util/misc/scoped_forbid_return.h" |
| 31 | 31 |
| 32 namespace { | 32 namespace { |
| 33 | 33 |
| 34 void MachTimeValueToTimeval(const time_value& mach, timeval* tv) { | 34 void MachTimeValueToTimeval(const time_value& mach, timeval* tv) { |
| 35 tv->tv_sec = mach.seconds; | 35 tv->tv_sec = mach.seconds; |
| 36 tv->tv_usec = mach.microseconds; | 36 tv->tv_usec = mach.microseconds; |
| 37 } | 37 } |
| 38 | 38 |
| 39 kern_return_t MachVMRegionRecurseDeepest(task_t task, | 39 kern_return_t MachVMRegionRecurseDeepest(task_t task, |
| (...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 707 // The red zone would go lower into another region in memory, but no | 707 // The red zone would go lower into another region in memory, but no |
| 708 // region was found. Memory can only be captured to an address as low as | 708 // region was found. Memory can only be captured to an address as low as |
| 709 // the base address of the region already found. | 709 // the base address of the region already found. |
| 710 *start_address = *region_base; | 710 *start_address = *region_base; |
| 711 } | 711 } |
| 712 } | 712 } |
| 713 #endif | 713 #endif |
| 714 } | 714 } |
| 715 | 715 |
| 716 } // namespace crashpad | 716 } // namespace crashpad |
| OLD | NEW |