blob: 747cb9e6ef1a0943e535dfc3ec198fabc38d07f9 [file] [log] [blame]
Glenn Kasten045ee7e2015-02-17 16:22:04 -08001/*
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 Kasten535e1612016-12-05 12:19:36 -080017#include <audio_utils/roundup.h>
Glenn Kasten045ee7e2015-02-17 16:22:04 -080018#include "FastThreadDumpState.h"
19
20namespace android {
21
Andy Hung05302372023-05-26 16:24:28 -070022FastThreadDumpState::FastThreadDumpState()
Glenn Kasten045ee7e2015-02-17 16:22:04 -080023{
Glenn Kastenfbdb2ac2015-03-02 14:47:19 -080024#ifdef FAST_THREAD_STATISTICS
25 increaseSamplingN(1);
26#endif
Glenn Kasten045ee7e2015-02-17 16:22:04 -080027}
28
Glenn Kastenfbdb2ac2015-03-02 14:47:19 -080029#ifdef FAST_THREAD_STATISTICS
30void FastThreadDumpState::increaseSamplingN(uint32_t samplingN)
31{
32 if (samplingN <= mSamplingN || samplingN > kSamplingN || roundup(samplingN) != samplingN) {
33 return;
34 }
Andy Hungf0859f32023-05-25 16:28:04 -070035 const uint32_t additional = samplingN - mSamplingN;
Glenn Kastenfbdb2ac2015-03-02 14:47:19 -080036 // 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 Hung71ba4b32022-10-06 12:09:49 -070047} // namespace android