John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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 | #ifndef JANKTRACKER_H_ |
| 17 | #define JANKTRACKER_H_ |
| 18 | |
| 19 | #include "FrameInfo.h" |
| 20 | #include "renderthread/TimeLord.h" |
| 21 | #include "utils/RingBuffer.h" |
| 22 | |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame] | 23 | #include <cutils/compiler.h> |
| 24 | |
John Reck | b36016c | 2015-03-11 08:50:53 -0700 | [diff] [blame] | 25 | #include <array> |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 26 | #include <memory> |
| 27 | |
| 28 | namespace android { |
| 29 | namespace uirenderer { |
| 30 | |
| 31 | enum JankType { |
| 32 | kMissedVsync = 0, |
| 33 | kHighInputLatency, |
| 34 | kSlowUI, |
| 35 | kSlowSync, |
| 36 | kSlowRT, |
| 37 | |
| 38 | // must be last |
| 39 | NUM_BUCKETS, |
| 40 | }; |
| 41 | |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame] | 42 | // Try to keep as small as possible, should match ASHMEM_SIZE in |
| 43 | // GraphicsStatsService.java |
| 44 | struct ProfileData { |
| 45 | std::array<uint32_t, NUM_BUCKETS> jankTypeCounts; |
| 46 | // See comments on kBucket* constants for what this holds |
John Reck | 379f264 | 2015-04-06 13:29:25 -0700 | [diff] [blame] | 47 | std::array<uint32_t, 55> frameCounts; |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame] | 48 | |
| 49 | uint32_t totalFrameCount; |
| 50 | uint32_t jankFrameCount; |
John Reck | 379f264 | 2015-04-06 13:29:25 -0700 | [diff] [blame] | 51 | nsecs_t statStartTime; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | // TODO: Replace DrawProfiler with this |
| 55 | class JankTracker { |
| 56 | public: |
| 57 | JankTracker(nsecs_t frameIntervalNanos); |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame] | 58 | ~JankTracker(); |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 59 | |
| 60 | void addFrame(const FrameInfo& frame); |
| 61 | |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame] | 62 | void dump(int fd) { dumpData(mData, fd); } |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 63 | void reset(); |
| 64 | |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame] | 65 | void switchStorageToAshmem(int ashmemfd); |
| 66 | |
| 67 | uint32_t findPercentile(int p) { return findPercentile(mData, p); } |
| 68 | |
| 69 | ANDROID_API static void dumpBuffer(const void* buffer, size_t bufsize, int fd); |
| 70 | |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 71 | private: |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame] | 72 | void freeData(); |
| 73 | void setFrameInterval(nsecs_t frameIntervalNanos); |
John Reck | e70c575 | 2015-03-06 14:40:50 -0800 | [diff] [blame] | 74 | |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame] | 75 | static uint32_t findPercentile(const ProfileData* data, int p); |
| 76 | static void dumpData(const ProfileData* data, int fd); |
| 77 | |
John Reck | b36016c | 2015-03-11 08:50:53 -0700 | [diff] [blame] | 78 | std::array<int64_t, NUM_BUCKETS> mThresholds; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 79 | int64_t mFrameInterval; |
John Reck | edc524c | 2015-03-18 15:24:33 -0700 | [diff] [blame] | 80 | ProfileData* mData; |
| 81 | bool mIsMapped = false; |
John Reck | ba6adf6 | 2015-02-19 14:36:50 -0800 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | } /* namespace uirenderer */ |
| 85 | } /* namespace android */ |
| 86 | |
| 87 | #endif /* JANKTRACKER_H_ */ |