| Glenn Kasten | 045ee7e | 2015-02-17 16:22:04 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| Glenn Kasten | 535e161 | 2016-12-05 12:19:36 -0800 | [diff] [blame] | 17 | #include <audio_utils/roundup.h> |
| Glenn Kasten | 045ee7e | 2015-02-17 16:22:04 -0800 | [diff] [blame] | 18 | #include "FastThreadDumpState.h" |
| 19 | |
| 20 | namespace android { |
| 21 | |
| Andy Hung | 0530237 | 2023-05-26 16:24:28 -0700 | [diff] [blame] | 22 | FastThreadDumpState::FastThreadDumpState() |
| Glenn Kasten | 045ee7e | 2015-02-17 16:22:04 -0800 | [diff] [blame] | 23 | { |
| Glenn Kasten | fbdb2ac | 2015-03-02 14:47:19 -0800 | [diff] [blame] | 24 | #ifdef FAST_THREAD_STATISTICS |
| 25 | increaseSamplingN(1); |
| 26 | #endif |
| Glenn Kasten | 045ee7e | 2015-02-17 16:22:04 -0800 | [diff] [blame] | 27 | } |
| 28 | |
| Glenn Kasten | fbdb2ac | 2015-03-02 14:47:19 -0800 | [diff] [blame] | 29 | #ifdef FAST_THREAD_STATISTICS |
| 30 | void FastThreadDumpState::increaseSamplingN(uint32_t samplingN) |
| 31 | { |
| 32 | if (samplingN <= mSamplingN || samplingN > kSamplingN || roundup(samplingN) != samplingN) { |
| 33 | return; |
| 34 | } |
| Andy Hung | f0859f3 | 2023-05-25 16:28:04 -0700 | [diff] [blame] | 35 | const uint32_t additional = samplingN - mSamplingN; |
| Glenn Kasten | fbdb2ac | 2015-03-02 14:47:19 -0800 | [diff] [blame] | 36 | // sample arrays aren't accessed atomically with respect to the bounds, |
| 37 | // so clearing reduces chance for dumpsys to read random uninitialized samples |
| 38 | memset(&mMonotonicNs[mSamplingN], 0, sizeof(mMonotonicNs[0]) * additional); |
| 39 | memset(&mLoadNs[mSamplingN], 0, sizeof(mLoadNs[0]) * additional); |
| 40 | #ifdef CPU_FREQUENCY_STATISTICS |
| 41 | memset(&mCpukHz[mSamplingN], 0, sizeof(mCpukHz[0]) * additional); |
| 42 | #endif |
| 43 | mSamplingN = samplingN; |
| 44 | } |
| 45 | #endif |
| 46 | |
| Andy Hung | 71ba4b3 | 2022-10-06 12:09:49 -0700 | [diff] [blame] | 47 | } // namespace android |