blob: f12069db07146e23ea41c47e0abaf9e74a159776 [file] [log] [blame]
Lalit Maganticaed37e2018-06-01 03:03:08 +01001/*
2 * Copyright (C) 2017 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
17#ifndef SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_
18#define SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_
19
Lalit Maganti35622b72018-06-06 12:03:11 +010020#include <array>
Lalit Maganticaed37e2018-06-01 03:03:08 +010021#include <deque>
Isabelle Taylor47328cf2018-06-12 14:33:59 +010022#include <map>
Lalit Maganticaed37e2018-06-01 03:03:08 +010023#include <string>
24#include <unordered_map>
Ioannis Ilkosb8b11102019-01-29 17:56:55 +000025#include <utility>
Lalit Maganticaed37e2018-06-01 03:03:08 +010026#include <vector>
27
Lalit Maganti35622b72018-06-06 12:03:11 +010028#include "perfetto/base/logging.h"
Eric Seckler83dcc8c2019-08-21 12:18:43 +010029#include "perfetto/base/time.h"
Primiano Tucci2c5488f2019-06-01 03:27:28 +010030#include "perfetto/ext/base/hash.h"
31#include "perfetto/ext/base/optional.h"
32#include "perfetto/ext/base/string_view.h"
Primiano Tucci2c5488f2019-06-01 03:27:28 +010033#include "perfetto/ext/base/utils.h"
Eric Secklerf93b8cf2019-11-20 21:33:01 +000034#include "perfetto/trace_processor/basic_types.h"
Lalit Maganti9ecfab32019-12-17 17:45:38 +000035#include "src/trace_processor/containers/string_pool.h"
Lalit Magantib0b53ee2019-01-24 17:53:39 +000036#include "src/trace_processor/ftrace_utils.h"
Mikhail Khokhlove466c002019-05-23 13:33:33 +010037#include "src/trace_processor/metadata.h"
Primiano Tucci0e38a142019-01-07 20:51:09 +000038#include "src/trace_processor/stats.h"
Lalit Maganti4b3b3ad2019-12-04 19:27:35 +000039#include "src/trace_processor/tables/counter_tables.h"
Ioannis Ilkose0b47f52019-09-18 11:14:57 +010040#include "src/trace_processor/tables/profiler_tables.h"
Lalit Maganti20539c22019-09-04 12:36:10 +010041#include "src/trace_processor/tables/slice_tables.h"
42#include "src/trace_processor/tables/track_tables.h"
Mikhail Khokhlov85a0dd02019-05-17 14:22:28 +010043#include "src/trace_processor/variadic.h"
Lalit Maganti35622b72018-06-06 12:03:11 +010044
Lalit Maganticaed37e2018-06-01 03:03:08 +010045namespace perfetto {
46namespace trace_processor {
47
Isabelle Taylora0a22972018-08-03 12:06:12 +010048// UniquePid is an offset into |unique_processes_|. This is necessary because
49// Unix pids are reused and thus not guaranteed to be unique over a long
50// period of time.
51using UniquePid = uint32_t;
Primiano Tucci0d72a312018-08-07 14:42:45 +010052
Isabelle Taylora0a22972018-08-03 12:06:12 +010053// UniqueTid is an offset into |unique_threads_|. Necessary because tids can
54// be reused.
55using UniqueTid = uint32_t;
56
Primiano Tucci0d72a312018-08-07 14:42:45 +010057// StringId is an offset into |string_pool_|.
Lalit Maganti5c454312019-04-08 12:11:17 +010058using StringId = StringPool::Id;
Lalit Maganti1a2936f2019-08-29 17:42:33 +010059static const StringId kNullStringId = StringId(0);
Primiano Tucci0d72a312018-08-07 14:42:45 +010060
Lalit Maganti5ea9e932018-11-30 14:19:39 +000061// Identifiers for all the tables in the database.
Lalit Maganti7449dc82019-12-30 15:52:35 +000062enum class TableId : uint8_t {
63 kInvalid = 0,
Lalit Maganti8320e6d2019-03-14 18:49:33 +000064 kCounterValues = 1,
Lalit Maganti1d915a62019-01-07 12:10:42 +000065 kRawEvents = 2,
Lalit Maganti66ed7ad2019-01-11 16:47:26 +000066 kInstants = 3,
Isabelle Taylorb9222c32019-01-31 10:58:37 +000067 kSched = 4,
Eric Seckler70cc4422019-05-28 16:00:23 +010068 kNestableSlices = 5,
Ryan Savitski51413ad2019-07-09 14:25:21 +010069 kMetadataTable = 6,
Lalit Maganti53bdbb22019-09-25 11:11:18 +010070 kTrack = 7,
Mohammad Reza Zakerinasabb06d1852019-09-11 14:41:36 -040071 kVulkanMemoryAllocation = 8,
Lalit Maganti5ea9e932018-11-30 14:19:39 +000072};
73
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +000074using ArgSetId = uint32_t;
75static const ArgSetId kInvalidArgSetId = 0;
76
Lalit Magantib0e11f62020-01-02 14:17:58 +000077using TrackId = tables::TrackTable::Id;
78
79using CounterId = tables::CounterTable::Id;
80
81using SliceId = tables::SliceTable::Id;
82
83using MappingId = tables::StackProfileMappingTable::Id;
Eric Seckler5703ede2019-07-10 10:13:02 +010084
Lalit Maganti809b2f92019-11-07 13:27:26 +000085// TODO(lalitm): this is a temporary hack while migrating the counters table and
86// will be removed when the migration is complete.
Lalit Magantib0e11f62020-01-02 14:17:58 +000087static const TrackId kInvalidTrackId =
88 TrackId(std::numeric_limits<TrackId>::max());
Lalit Maganti809b2f92019-11-07 13:27:26 +000089
Lalit Maganti21b21632019-09-28 16:50:23 +010090enum class RefType {
Primiano Tucci5403e4f2018-11-27 10:07:03 +000091 kRefNoRef = 0,
92 kRefUtid = 1,
93 kRefCpuId = 2,
94 kRefIrq = 3,
95 kRefSoftIrq = 4,
96 kRefUpid = 5,
Sidath Senanayake1f5f93a2019-06-06 22:24:15 +010097 kRefGpuId = 6,
Eric Seckler5703ede2019-07-10 10:13:02 +010098 kRefTrack = 7,
Primiano Tucci5403e4f2018-11-27 10:07:03 +000099 kRefMax
Isabelle Taylora97c5f52018-10-23 17:36:12 +0100100};
Isabelle Taylor14674d42018-09-07 11:33:11 +0100101
Lalit Magantib134d252019-12-10 12:21:27 +0000102const std::vector<NullTermStringView>& GetRefTypeStringMap();
Eric Seckler972225e2019-04-18 11:07:12 +0100103
Lalit Maganticaed37e2018-06-01 03:03:08 +0100104// Stores a data inside a trace file in a columnar form. This makes it efficient
105// to read or search across a single field of the trace (e.g. all the thread
106// names for a given CPU).
107class TraceStorage {
108 public:
Eric Secklerf93b8cf2019-11-20 21:33:01 +0000109 TraceStorage(const Config& = Config());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100110
111 virtual ~TraceStorage();
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100112
Isabelle Taylora0a22972018-08-03 12:06:12 +0100113 // Information about a unique process seen in a trace.
114 struct Process {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100115 explicit Process(uint32_t p) : pid(p) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000116 int64_t start_ns = 0;
Lalit Maganti637589a2019-07-04 17:25:29 +0100117 int64_t end_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100118 StringId name_id = 0;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100119 uint32_t pid = 0;
Lalit Maganti369b0572019-07-11 15:35:09 +0100120 base::Optional<UniquePid> parent_upid;
Ioannis Ilkosfd554bc2019-11-16 01:14:57 +0000121 base::Optional<uint32_t> uid;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100122 };
123
124 // Information about a unique thread seen in a trace.
125 struct Thread {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100126 explicit Thread(uint32_t t) : tid(t) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000127 int64_t start_ns = 0;
Lalit Magantib5bd2332019-06-06 14:20:47 +0100128 int64_t end_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100129 StringId name_id = 0;
Lalit Maganti770886a2018-11-16 17:40:21 +0000130 base::Optional<UniquePid> upid;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100131 uint32_t tid = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100132 };
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100133
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000134 // Generic key value storage which can be referenced by other tables.
135 class Args {
136 public:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000137 struct Arg {
138 StringId flat_key = 0;
139 StringId key = 0;
140 Variadic value = Variadic::Integer(0);
141
Lalit Maganti7449dc82019-12-30 15:52:35 +0000142 TableId table;
143 uint32_t row;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000144 };
145
146 struct ArgHasher {
147 uint64_t operator()(const Arg& arg) const noexcept {
Lalit Maganti1f464742019-02-28 13:49:31 +0000148 base::Hash hash;
149 hash.Update(arg.key);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000150 // We don't hash arg.flat_key because it's a subsequence of arg.key.
151 switch (arg.value.type) {
152 case Variadic::Type::kInt:
Lalit Maganti1f464742019-02-28 13:49:31 +0000153 hash.Update(arg.value.int_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000154 break;
Eric Secklerc93823e2019-06-03 16:49:19 +0100155 case Variadic::Type::kUint:
156 hash.Update(arg.value.uint_value);
157 break;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000158 case Variadic::Type::kString:
Lalit Maganti1f464742019-02-28 13:49:31 +0000159 hash.Update(arg.value.string_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000160 break;
161 case Variadic::Type::kReal:
Lalit Maganti1f464742019-02-28 13:49:31 +0000162 hash.Update(arg.value.real_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000163 break;
Eric Secklerc93823e2019-06-03 16:49:19 +0100164 case Variadic::Type::kPointer:
165 hash.Update(arg.value.pointer_value);
166 break;
167 case Variadic::Type::kBool:
168 hash.Update(arg.value.bool_value);
169 break;
170 case Variadic::Type::kJson:
171 hash.Update(arg.value.json_value);
172 break;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000173 }
Lalit Maganti1f464742019-02-28 13:49:31 +0000174 return hash.digest();
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000175 }
176 };
177
178 const std::deque<ArgSetId>& set_ids() const { return set_ids_; }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000179 const std::deque<StringId>& flat_keys() const { return flat_keys_; }
180 const std::deque<StringId>& keys() const { return keys_; }
Lalit Maganti1d915a62019-01-07 12:10:42 +0000181 const std::deque<Variadic>& arg_values() const { return arg_values_; }
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000182 uint32_t args_count() const {
183 return static_cast<uint32_t>(set_ids_.size());
Lalit Maganti79472be2018-12-04 13:41:27 +0000184 }
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000185
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000186 ArgSetId AddArgSet(const std::vector<Arg>& args,
187 uint32_t begin,
188 uint32_t end) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000189 base::Hash hash;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000190 for (uint32_t i = begin; i < end; i++) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000191 hash.Update(ArgHasher()(args[i]));
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000192 }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000193
Lalit Maganti1f464742019-02-28 13:49:31 +0000194 ArgSetHash digest = hash.digest();
195 auto it = arg_row_for_hash_.find(digest);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000196 if (it != arg_row_for_hash_.end()) {
197 return set_ids_[it->second];
198 }
199
200 // The +1 ensures that nothing has an id == kInvalidArgSetId == 0.
201 ArgSetId id = static_cast<uint32_t>(arg_row_for_hash_.size()) + 1;
Lalit Maganti1f464742019-02-28 13:49:31 +0000202 arg_row_for_hash_.emplace(digest, args_count());
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000203 for (uint32_t i = begin; i < end; i++) {
204 const auto& arg = args[i];
205 set_ids_.emplace_back(id);
206 flat_keys_.emplace_back(arg.flat_key);
207 keys_.emplace_back(arg.key);
208 arg_values_.emplace_back(arg.value);
209 }
210 return id;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000211 }
212
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000213 private:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000214 using ArgSetHash = uint64_t;
215
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000216 std::deque<ArgSetId> set_ids_;
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000217 std::deque<StringId> flat_keys_;
218 std::deque<StringId> keys_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000219 std::deque<Variadic> arg_values_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000220
221 std::unordered_map<ArgSetHash, uint32_t> arg_row_for_hash_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000222 };
223
Lalit Magantid11d3e02019-07-26 12:32:09 +0530224 class Tracks {
225 public:
226 inline uint32_t AddTrack(StringId name) {
227 names_.emplace_back(name);
228 return track_count() - 1;
229 }
230
231 uint32_t track_count() const {
232 return static_cast<uint32_t>(names_.size());
233 }
234
235 const std::deque<StringId>& names() const { return names_; }
236
237 private:
238 std::deque<StringId> names_;
239 };
240
Mikael Pessa803090c2019-08-23 16:03:34 -0700241 class GpuContexts {
242 public:
243 inline void AddGpuContext(uint64_t context_id,
244 UniquePid upid,
245 uint32_t priority) {
246 context_ids_.emplace_back(context_id);
247 upids_.emplace_back(upid);
248 priorities_.emplace_back(priority);
249 }
250
251 uint32_t gpu_context_count() const {
252 return static_cast<uint32_t>(context_ids_.size());
253 }
254
255 const std::deque<uint64_t>& context_ids() const { return context_ids_; }
256 const std::deque<UniquePid>& upids() const { return upids_; }
257 const std::deque<uint32_t>& priorities() const { return priorities_; }
258
259 private:
260 std::deque<uint64_t> context_ids_;
261 std::deque<UniquePid> upids_;
262 std::deque<uint32_t> priorities_;
263 };
264
Lalit Magantiff69c112018-09-24 12:07:47 +0100265 class Slices {
Lalit Maganti35622b72018-06-06 12:03:11 +0100266 public:
Lalit Magantifde29042018-10-04 13:28:52 +0100267 inline size_t AddSlice(uint32_t cpu,
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000268 int64_t start_ns,
269 int64_t duration_ns,
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000270 UniqueTid utid,
271 ftrace_utils::TaskState end_state,
272 int32_t priority) {
Lalit Magantiff69c112018-09-24 12:07:47 +0100273 cpus_.emplace_back(cpu);
Lalit Maganti35622b72018-06-06 12:03:11 +0100274 start_ns_.emplace_back(start_ns);
275 durations_.emplace_back(duration_ns);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100276 utids_.emplace_back(utid);
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000277 end_states_.emplace_back(end_state);
278 priorities_.emplace_back(priority);
Lalit Maganti58638932019-01-31 10:48:26 +0000279
280 if (utid >= rows_for_utids_.size())
281 rows_for_utids_.resize(utid + 1);
282 rows_for_utids_[utid].emplace_back(slice_count() - 1);
Lalit Magantifde29042018-10-04 13:28:52 +0100283 return slice_count() - 1;
284 }
285
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000286 void set_duration(size_t index, int64_t duration_ns) {
Lalit Magantifde29042018-10-04 13:28:52 +0100287 durations_[index] = duration_ns;
Lalit Maganti35622b72018-06-06 12:03:11 +0100288 }
289
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000290 void set_end_state(size_t index, ftrace_utils::TaskState end_state) {
291 end_states_[index] = end_state;
292 }
293
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100294 size_t slice_count() const { return start_ns_.size(); }
Lalit Maganti35622b72018-06-06 12:03:11 +0100295
Lalit Magantiff69c112018-09-24 12:07:47 +0100296 const std::deque<uint32_t>& cpus() const { return cpus_; }
297
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000298 const std::deque<int64_t>& start_ns() const { return start_ns_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100299
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000300 const std::deque<int64_t>& durations() const { return durations_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100301
Isabelle Taylor68e42192018-06-19 16:19:31 +0100302 const std::deque<UniqueTid>& utids() const { return utids_; }
303
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000304 const std::deque<ftrace_utils::TaskState>& end_state() const {
305 return end_states_;
306 }
307
308 const std::deque<int32_t>& priorities() const { return priorities_; }
309
Lalit Maganti58638932019-01-31 10:48:26 +0000310 const std::deque<std::vector<uint32_t>>& rows_for_utids() const {
Lalit Magantif0f09c32019-01-18 17:29:31 +0000311 return rows_for_utids_;
312 }
313
Lalit Maganti35622b72018-06-06 12:03:11 +0100314 private:
Hector Dearman947f12a2018-09-11 16:50:36 +0100315 // Each deque below has the same number of entries (the number of slices
Lalit Maganti35622b72018-06-06 12:03:11 +0100316 // in the trace for the CPU).
Lalit Magantiff69c112018-09-24 12:07:47 +0100317 std::deque<uint32_t> cpus_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000318 std::deque<int64_t> start_ns_;
319 std::deque<int64_t> durations_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100320 std::deque<UniqueTid> utids_;
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000321 std::deque<ftrace_utils::TaskState> end_states_;
322 std::deque<int32_t> priorities_;
Lalit Maganti58638932019-01-31 10:48:26 +0000323
324 // One row per utid.
325 std::deque<std::vector<uint32_t>> rows_for_utids_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100326 };
Isabelle Taylor68e42192018-06-19 16:19:31 +0100327
Eric Secklerd3b89d52019-07-10 15:36:29 +0100328 class ThreadSlices {
329 public:
330 inline uint32_t AddThreadSlice(uint32_t slice_id,
331 int64_t thread_timestamp_ns,
332 int64_t thread_duration_ns,
333 int64_t thread_instruction_count,
334 int64_t thread_instruction_delta) {
335 slice_ids_.emplace_back(slice_id);
336 thread_timestamp_ns_.emplace_back(thread_timestamp_ns);
337 thread_duration_ns_.emplace_back(thread_duration_ns);
338 thread_instruction_counts_.emplace_back(thread_instruction_count);
339 thread_instruction_deltas_.emplace_back(thread_instruction_delta);
340 return slice_count() - 1;
341 }
342
Eric Secklerc3430c62019-07-22 10:49:58 +0100343 uint32_t slice_count() const {
344 return static_cast<uint32_t>(slice_ids_.size());
Eric Secklerd3b89d52019-07-10 15:36:29 +0100345 }
346
Eric Secklerc3430c62019-07-22 10:49:58 +0100347 const std::deque<uint32_t>& slice_ids() const { return slice_ids_; }
348 const std::deque<int64_t>& thread_timestamp_ns() const {
349 return thread_timestamp_ns_;
350 }
351 const std::deque<int64_t>& thread_duration_ns() const {
352 return thread_duration_ns_;
353 }
354 const std::deque<int64_t>& thread_instruction_counts() const {
355 return thread_instruction_counts_;
356 }
357 const std::deque<int64_t>& thread_instruction_deltas() const {
358 return thread_instruction_deltas_;
359 }
360
361 base::Optional<uint32_t> FindRowForSliceId(uint32_t slice_id) const {
362 auto it =
363 std::lower_bound(slice_ids().begin(), slice_ids().end(), slice_id);
364 if (it != slice_ids().end() && *it == slice_id) {
365 return static_cast<uint32_t>(std::distance(slice_ids().begin(), it));
366 }
367 return base::nullopt;
368 }
369
Eric Seckler54f30a32019-07-19 15:10:29 +0100370 void UpdateThreadDeltasForSliceId(uint32_t slice_id,
371 int64_t end_thread_timestamp_ns,
372 int64_t end_thread_instruction_count) {
Eric Secklerc3430c62019-07-22 10:49:58 +0100373 uint32_t row = *FindRowForSliceId(slice_id);
374 int64_t begin_ns = thread_timestamp_ns_[row];
375 thread_duration_ns_[row] = end_thread_timestamp_ns - begin_ns;
Eric Seckler54f30a32019-07-19 15:10:29 +0100376 int64_t begin_ticount = thread_instruction_counts_[row];
377 thread_instruction_deltas_[row] =
378 end_thread_instruction_count - begin_ticount;
Eric Secklerc3430c62019-07-22 10:49:58 +0100379 }
380
381 private:
382 std::deque<uint32_t> slice_ids_;
383 std::deque<int64_t> thread_timestamp_ns_;
384 std::deque<int64_t> thread_duration_ns_;
385 std::deque<int64_t> thread_instruction_counts_;
386 std::deque<int64_t> thread_instruction_deltas_;
387 };
388
389 class VirtualTrackSlices {
390 public:
391 inline uint32_t AddVirtualTrackSlice(uint32_t slice_id,
392 int64_t thread_timestamp_ns,
393 int64_t thread_duration_ns,
394 int64_t thread_instruction_count,
395 int64_t thread_instruction_delta) {
396 slice_ids_.emplace_back(slice_id);
397 thread_timestamp_ns_.emplace_back(thread_timestamp_ns);
398 thread_duration_ns_.emplace_back(thread_duration_ns);
399 thread_instruction_counts_.emplace_back(thread_instruction_count);
400 thread_instruction_deltas_.emplace_back(thread_instruction_delta);
401 return slice_count() - 1;
Eric Secklerd3b89d52019-07-10 15:36:29 +0100402 }
403
404 uint32_t slice_count() const {
405 return static_cast<uint32_t>(slice_ids_.size());
406 }
407
408 const std::deque<uint32_t>& slice_ids() const { return slice_ids_; }
409 const std::deque<int64_t>& thread_timestamp_ns() const {
410 return thread_timestamp_ns_;
411 }
412 const std::deque<int64_t>& thread_duration_ns() const {
413 return thread_duration_ns_;
414 }
415 const std::deque<int64_t>& thread_instruction_counts() const {
416 return thread_instruction_counts_;
417 }
418 const std::deque<int64_t>& thread_instruction_deltas() const {
419 return thread_instruction_deltas_;
420 }
421
Mikhail Khokhlov7db04912019-07-18 16:11:11 +0100422 base::Optional<uint32_t> FindRowForSliceId(uint32_t slice_id) const {
Eric Secklerd3b89d52019-07-10 15:36:29 +0100423 auto it =
424 std::lower_bound(slice_ids().begin(), slice_ids().end(), slice_id);
Mikhail Khokhlov7db04912019-07-18 16:11:11 +0100425 if (it != slice_ids().end() && *it == slice_id) {
426 return static_cast<uint32_t>(std::distance(slice_ids().begin(), it));
427 }
428 return base::nullopt;
Eric Secklerd3b89d52019-07-10 15:36:29 +0100429 }
430
Eric Seckler54f30a32019-07-19 15:10:29 +0100431 void UpdateThreadDeltasForSliceId(uint32_t slice_id,
432 int64_t end_thread_timestamp_ns,
433 int64_t end_thread_instruction_count) {
Mikhail Khokhlov7db04912019-07-18 16:11:11 +0100434 uint32_t row = *FindRowForSliceId(slice_id);
Eric Secklerd3b89d52019-07-10 15:36:29 +0100435 int64_t begin_ns = thread_timestamp_ns_[row];
436 thread_duration_ns_[row] = end_thread_timestamp_ns - begin_ns;
Eric Seckler54f30a32019-07-19 15:10:29 +0100437 int64_t begin_ticount = thread_instruction_counts_[row];
438 thread_instruction_deltas_[row] =
439 end_thread_instruction_count - begin_ticount;
Eric Secklerd3b89d52019-07-10 15:36:29 +0100440 }
441
442 private:
443 std::deque<uint32_t> slice_ids_;
444 std::deque<int64_t> thread_timestamp_ns_;
445 std::deque<int64_t> thread_duration_ns_;
446 std::deque<int64_t> thread_instruction_counts_;
447 std::deque<int64_t> thread_instruction_deltas_;
448 };
449
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700450 class SqlStats {
451 public:
452 static constexpr size_t kMaxLogEntries = 100;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100453 uint32_t RecordQueryBegin(const std::string& query,
454 int64_t time_queued,
455 int64_t time_started);
456 void RecordQueryFirstNext(uint32_t row, int64_t time_first_next);
457 void RecordQueryEnd(uint32_t row, int64_t time_end);
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700458 size_t size() const { return queries_.size(); }
459 const std::deque<std::string>& queries() const { return queries_; }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000460 const std::deque<int64_t>& times_queued() const { return times_queued_; }
461 const std::deque<int64_t>& times_started() const { return times_started_; }
Lalit Magantiaac2f652019-04-30 12:16:21 +0100462 const std::deque<int64_t>& times_first_next() const {
463 return times_first_next_;
464 }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000465 const std::deque<int64_t>& times_ended() const { return times_ended_; }
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700466
467 private:
Lalit Magantiaac2f652019-04-30 12:16:21 +0100468 uint32_t popped_queries_ = 0;
469
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700470 std::deque<std::string> queries_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000471 std::deque<int64_t> times_queued_;
472 std::deque<int64_t> times_started_;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100473 std::deque<int64_t> times_first_next_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000474 std::deque<int64_t> times_ended_;
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700475 };
476
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000477 class Instants {
478 public:
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000479 inline uint32_t AddInstantEvent(int64_t timestamp,
480 StringId name_id,
481 double value,
482 int64_t ref,
483 RefType type) {
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000484 timestamps_.emplace_back(timestamp);
485 name_ids_.emplace_back(name_id);
486 values_.emplace_back(value);
487 refs_.emplace_back(ref);
488 types_.emplace_back(type);
Lalit Maganti1c21d172019-02-07 10:48:24 +0000489 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000490 return static_cast<uint32_t>(instant_count() - 1);
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000491 }
492
Lalit Maganti521d97b2019-04-29 13:47:03 +0100493 void set_ref(uint32_t row, int64_t ref) { refs_[row] = ref; }
494
Lalit Maganti1c21d172019-02-07 10:48:24 +0000495 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
496
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000497 size_t instant_count() const { return timestamps_.size(); }
498
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000499 const std::deque<int64_t>& timestamps() const { return timestamps_; }
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000500
501 const std::deque<StringId>& name_ids() const { return name_ids_; }
502
503 const std::deque<double>& values() const { return values_; }
504
505 const std::deque<int64_t>& refs() const { return refs_; }
506
507 const std::deque<RefType>& types() const { return types_; }
508
Lalit Maganti1c21d172019-02-07 10:48:24 +0000509 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
510
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000511 private:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000512 std::deque<int64_t> timestamps_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000513 std::deque<StringId> name_ids_;
514 std::deque<double> values_;
515 std::deque<int64_t> refs_;
516 std::deque<RefType> types_;
Lalit Maganti1c21d172019-02-07 10:48:24 +0000517 std::deque<ArgSetId> arg_set_ids_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000518 };
519
Lalit Maganti1d915a62019-01-07 12:10:42 +0000520 class RawEvents {
521 public:
Lalit Maganti7449dc82019-12-30 15:52:35 +0000522 inline uint32_t AddRawEvent(int64_t timestamp,
523 StringId name_id,
524 uint32_t cpu,
525 UniqueTid utid) {
Lalit Maganti1d915a62019-01-07 12:10:42 +0000526 timestamps_.emplace_back(timestamp);
527 name_ids_.emplace_back(name_id);
Lalit Magantie87cc812019-01-10 15:20:06 +0000528 cpus_.emplace_back(cpu);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000529 utids_.emplace_back(utid);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000530 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti7449dc82019-12-30 15:52:35 +0000531 return static_cast<uint32_t>(raw_event_count() - 1);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000532 }
533
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000534 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
535
Lalit Maganti1d915a62019-01-07 12:10:42 +0000536 size_t raw_event_count() const { return timestamps_.size(); }
537
538 const std::deque<int64_t>& timestamps() const { return timestamps_; }
539
540 const std::deque<StringId>& name_ids() const { return name_ids_; }
541
Lalit Magantie87cc812019-01-10 15:20:06 +0000542 const std::deque<uint32_t>& cpus() const { return cpus_; }
543
Lalit Maganti1d915a62019-01-07 12:10:42 +0000544 const std::deque<UniqueTid>& utids() const { return utids_; }
545
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000546 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
547
Lalit Maganti1d915a62019-01-07 12:10:42 +0000548 private:
549 std::deque<int64_t> timestamps_;
550 std::deque<StringId> name_ids_;
Lalit Magantie87cc812019-01-10 15:20:06 +0000551 std::deque<uint32_t> cpus_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000552 std::deque<UniqueTid> utids_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000553 std::deque<ArgSetId> arg_set_ids_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000554 };
555
Primiano Tucci2c761ef2019-01-07 20:20:46 +0000556 class AndroidLogs {
557 public:
558 inline size_t AddLogEvent(int64_t timestamp,
559 UniqueTid utid,
560 uint8_t prio,
561 StringId tag_id,
562 StringId msg_id) {
563 timestamps_.emplace_back(timestamp);
564 utids_.emplace_back(utid);
565 prios_.emplace_back(prio);
566 tag_ids_.emplace_back(tag_id);
567 msg_ids_.emplace_back(msg_id);
568 return size() - 1;
569 }
570
571 size_t size() const { return timestamps_.size(); }
572
573 const std::deque<int64_t>& timestamps() const { return timestamps_; }
574 const std::deque<UniqueTid>& utids() const { return utids_; }
575 const std::deque<uint8_t>& prios() const { return prios_; }
576 const std::deque<StringId>& tag_ids() const { return tag_ids_; }
577 const std::deque<StringId>& msg_ids() const { return msg_ids_; }
578
579 private:
580 std::deque<int64_t> timestamps_;
581 std::deque<UniqueTid> utids_;
582 std::deque<uint8_t> prios_;
583 std::deque<StringId> tag_ids_;
584 std::deque<StringId> msg_ids_;
585 };
586
Primiano Tucci0e38a142019-01-07 20:51:09 +0000587 struct Stats {
588 using IndexMap = std::map<int, int64_t>;
589 int64_t value = 0;
590 IndexMap indexed_values;
591 };
592 using StatsMap = std::array<Stats, stats::kNumKeys>;
593
Ryan Savitski51413ad2019-07-09 14:25:21 +0100594 class Metadata {
595 public:
596 const std::deque<metadata::KeyIDs>& keys() const { return keys_; }
597 const std::deque<Variadic>& values() const { return values_; }
598
Lalit Maganti7449dc82019-12-30 15:52:35 +0000599 uint32_t SetScalarMetadata(metadata::KeyIDs key, Variadic value) {
Ryan Savitski51413ad2019-07-09 14:25:21 +0100600 PERFETTO_DCHECK(key < metadata::kNumKeys);
601 PERFETTO_DCHECK(metadata::kKeyTypes[key] == metadata::kSingle);
602 PERFETTO_DCHECK(value.type == metadata::kValueTypes[key]);
603
604 // Already set - on release builds, overwrite the previous value.
605 auto it = scalar_indices.find(key);
606 if (it != scalar_indices.end()) {
607 PERFETTO_DFATAL("Setting a scalar metadata entry more than once.");
608 uint32_t index = static_cast<uint32_t>(it->second);
609 values_[index] = value;
Lalit Maganti7449dc82019-12-30 15:52:35 +0000610 return index;
Ryan Savitski51413ad2019-07-09 14:25:21 +0100611 }
612 // First time setting this key.
613 keys_.push_back(key);
614 values_.push_back(value);
615 uint32_t index = static_cast<uint32_t>(keys_.size() - 1);
616 scalar_indices[key] = index;
Lalit Maganti7449dc82019-12-30 15:52:35 +0000617 return index;
Ryan Savitski51413ad2019-07-09 14:25:21 +0100618 }
619
Lalit Maganti7449dc82019-12-30 15:52:35 +0000620 uint32_t AppendMetadata(metadata::KeyIDs key, Variadic value) {
Ryan Savitski51413ad2019-07-09 14:25:21 +0100621 PERFETTO_DCHECK(key < metadata::kNumKeys);
622 PERFETTO_DCHECK(metadata::kKeyTypes[key] == metadata::kMulti);
623 PERFETTO_DCHECK(value.type == metadata::kValueTypes[key]);
624
625 keys_.push_back(key);
626 values_.push_back(value);
Lalit Maganti7449dc82019-12-30 15:52:35 +0000627 return static_cast<uint32_t>(keys_.size() - 1);
Ryan Savitski51413ad2019-07-09 14:25:21 +0100628 }
629
Isabelle Taylor13a75852019-11-20 10:29:40 +0000630 const Variadic& GetScalarMetadata(metadata::KeyIDs key) const {
631 PERFETTO_DCHECK(scalar_indices.count(key) == 1);
632 return values_.at(scalar_indices.at(key));
633 }
634
635 bool MetadataExists(metadata::KeyIDs key) const {
636 return scalar_indices.count(key) >= 1;
637 }
638
Ryan Savitski0476ee92019-07-09 14:29:33 +0100639 void OverwriteMetadata(uint32_t index, Variadic value) {
640 PERFETTO_DCHECK(index < values_.size());
641 values_[index] = value;
642 }
643
Ryan Savitski51413ad2019-07-09 14:25:21 +0100644 private:
645 std::deque<metadata::KeyIDs> keys_;
646 std::deque<Variadic> values_;
647 // Extraneous state to track locations of entries that should have at most
648 // one row. Used only to maintain uniqueness during insertions.
649 std::map<metadata::KeyIDs, uint32_t> scalar_indices;
650 };
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100651
Oystein Eftevaag5419c582019-08-21 13:58:49 -0700652 class StackProfileFrames {
Florian Mayer438b5ab2019-05-02 11:18:06 +0100653 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100654 struct Row {
655 StringId name_id;
656 int64_t mapping_row;
657 int64_t rel_pc;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100658
Florian Mayerbee52132019-05-02 13:59:56 +0100659 bool operator==(const Row& other) const {
660 return std::tie(name_id, mapping_row, rel_pc) ==
661 std::tie(other.name_id, other.mapping_row, other.rel_pc);
662 }
663 };
664
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100665 uint32_t size() const { return static_cast<uint32_t>(names_.size()); }
666
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +0100667 uint32_t Insert(const Row& row) {
Florian Mayerbee52132019-05-02 13:59:56 +0100668 names_.emplace_back(row.name_id);
669 mappings_.emplace_back(row.mapping_row);
670 rel_pcs_.emplace_back(row.rel_pc);
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100671 symbol_set_ids_.emplace_back(0);
Florian Mayera480cd62019-09-24 10:36:56 +0100672 size_t row_number = names_.size() - 1;
Oystein Eftevaag5a76f102019-11-07 10:18:16 -0800673 index_[std::make_pair(row.mapping_row, row.rel_pc)].emplace_back(
674 row_number);
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +0100675 return static_cast<uint32_t>(row_number);
Florian Mayera480cd62019-09-24 10:36:56 +0100676 }
677
Oystein Eftevaag5a76f102019-11-07 10:18:16 -0800678 std::vector<int64_t> FindFrameRow(size_t mapping_row,
679 uint64_t rel_pc) const {
Florian Mayera480cd62019-09-24 10:36:56 +0100680 auto it = index_.find(std::make_pair(mapping_row, rel_pc));
681 if (it == index_.end())
Oystein Eftevaag5a76f102019-11-07 10:18:16 -0800682 return {};
683 return it->second;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100684 }
685
Lalit Magantib0e11f62020-01-02 14:17:58 +0000686 void SetSymbolSetId(uint32_t row_idx, uint32_t symbol_set_id) {
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100687 PERFETTO_CHECK(row_idx < symbol_set_ids_.size());
688 symbol_set_ids_[row_idx] = symbol_set_id;
Ioannis Ilkose6727552019-08-14 15:10:59 +0100689 }
690
Florian Mayer438b5ab2019-05-02 11:18:06 +0100691 const std::deque<StringId>& names() const { return names_; }
692 const std::deque<int64_t>& mappings() const { return mappings_; }
693 const std::deque<int64_t>& rel_pcs() const { return rel_pcs_; }
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100694 const std::deque<uint32_t>& symbol_set_ids() const {
695 return symbol_set_ids_;
696 }
Florian Mayer438b5ab2019-05-02 11:18:06 +0100697
698 private:
699 std::deque<StringId> names_;
700 std::deque<int64_t> mappings_;
701 std::deque<int64_t> rel_pcs_;
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100702 std::deque<uint32_t> symbol_set_ids_;
Florian Mayera480cd62019-09-24 10:36:56 +0100703
Oystein Eftevaag5a76f102019-11-07 10:18:16 -0800704 std::map<std::pair<size_t /* mapping row */, uint64_t /* rel_pc */>,
705 std::vector<int64_t>>
Florian Mayera480cd62019-09-24 10:36:56 +0100706 index_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100707 };
708
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100709 UniqueTid AddEmptyThread(uint32_t tid) {
710 unique_threads_.emplace_back(tid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100711 return static_cast<UniqueTid>(unique_threads_.size() - 1);
712 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100713
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100714 UniquePid AddEmptyProcess(uint32_t pid) {
715 unique_processes_.emplace_back(pid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100716 return static_cast<UniquePid>(unique_processes_.size() - 1);
717 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100718
Isabelle Taylora0a22972018-08-03 12:06:12 +0100719 // Return an unqiue identifier for the contents of each string.
720 // The string is copied internally and can be destroyed after this called.
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100721 // Virtual for testing.
Lalit Maganti5c454312019-04-08 12:11:17 +0100722 virtual StringId InternString(base::StringView str) {
723 return string_pool_.InternString(str);
724 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100725
Isabelle Taylora0a22972018-08-03 12:06:12 +0100726 Process* GetMutableProcess(UniquePid upid) {
Lalit Maganti676658b2018-11-20 18:24:31 +0000727 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100728 return &unique_processes_[upid];
729 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100730
Isabelle Taylora0a22972018-08-03 12:06:12 +0100731 Thread* GetMutableThread(UniqueTid utid) {
Florian Mayera1aaec22018-09-19 17:02:26 +0100732 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100733 return &unique_threads_[utid];
734 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100735
Primiano Tucci0e38a142019-01-07 20:51:09 +0000736 // Example usage: SetStats(stats::android_log_num_failed, 42);
737 void SetStats(size_t key, int64_t value) {
738 PERFETTO_DCHECK(key < stats::kNumKeys);
739 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
740 stats_[key].value = value;
741 }
742
743 // Example usage: IncrementStats(stats::android_log_num_failed, -1);
744 void IncrementStats(size_t key, int64_t increment = 1) {
745 PERFETTO_DCHECK(key < stats::kNumKeys);
746 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
747 stats_[key].value += increment;
748 }
749
Florian Mayer438b5ab2019-05-02 11:18:06 +0100750 // Example usage: IncrementIndexedStats(stats::cpu_failure, 1);
751 void IncrementIndexedStats(size_t key, int index, int64_t increment = 1) {
752 PERFETTO_DCHECK(key < stats::kNumKeys);
753 PERFETTO_DCHECK(stats::kTypes[key] == stats::kIndexed);
754 stats_[key].indexed_values[index] += increment;
755 }
756
Primiano Tucci0e38a142019-01-07 20:51:09 +0000757 // Example usage: SetIndexedStats(stats::cpu_failure, 1, 42);
758 void SetIndexedStats(size_t key, int index, int64_t value) {
759 PERFETTO_DCHECK(key < stats::kNumKeys);
760 PERFETTO_DCHECK(stats::kTypes[key] == stats::kIndexed);
761 stats_[key].indexed_values[index] = value;
762 }
763
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100764 // Example usage:
765 // SetMetadata(metadata::benchmark_name,
766 // Variadic::String(storage->InternString("foo"));
Lalit Maganti7449dc82019-12-30 15:52:35 +0000767 // Returns the row of the new entry.
Mikhail Khokhlovb1fe42a2019-05-23 13:58:05 +0100768 // Virtual for testing.
Lalit Maganti7449dc82019-12-30 15:52:35 +0000769 virtual uint32_t SetMetadata(metadata::KeyIDs key, Variadic value) {
Ryan Savitski51413ad2019-07-09 14:25:21 +0100770 return metadata_.SetScalarMetadata(key, value);
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100771 }
772
773 // Example usage:
774 // AppendMetadata(metadata::benchmark_story_tags,
775 // Variadic::String(storage->InternString("bar"));
Lalit Maganti7449dc82019-12-30 15:52:35 +0000776 // Returns the row of the new entry.
Mikhail Khokhlovb1fe42a2019-05-23 13:58:05 +0100777 // Virtual for testing.
Lalit Maganti7449dc82019-12-30 15:52:35 +0000778 virtual uint32_t AppendMetadata(metadata::KeyIDs key, Variadic value) {
Ryan Savitski51413ad2019-07-09 14:25:21 +0100779 return metadata_.AppendMetadata(key, value);
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100780 }
781
Eric Seckler77b52782019-05-02 15:18:57 +0100782 class ScopedStatsTracer {
783 public:
784 ScopedStatsTracer(TraceStorage* storage, size_t key)
785 : storage_(storage), key_(key), start_ns_(base::GetWallTimeNs()) {}
786
787 ~ScopedStatsTracer() {
788 if (!storage_)
789 return;
790 auto delta_ns = base::GetWallTimeNs() - start_ns_;
791 storage_->IncrementStats(key_, delta_ns.count());
792 }
793
794 ScopedStatsTracer(ScopedStatsTracer&& other) noexcept { MoveImpl(&other); }
795
796 ScopedStatsTracer& operator=(ScopedStatsTracer&& other) {
797 MoveImpl(&other);
798 return *this;
799 }
800
801 private:
802 ScopedStatsTracer(const ScopedStatsTracer&) = delete;
803 ScopedStatsTracer& operator=(const ScopedStatsTracer&) = delete;
804
805 void MoveImpl(ScopedStatsTracer* other) {
806 storage_ = other->storage_;
807 key_ = other->key_;
808 start_ns_ = other->start_ns_;
809 other->storage_ = nullptr;
810 }
811
812 TraceStorage* storage_;
813 size_t key_;
814 base::TimeNanos start_ns_;
815 };
816
817 ScopedStatsTracer TraceExecutionTimeIntoStats(size_t key) {
818 return ScopedStatsTracer(this, key);
819 }
820
Lalit Maganticaed37e2018-06-01 03:03:08 +0100821 // Reading methods.
Eric Secklerc93823e2019-06-03 16:49:19 +0100822 // Virtual for testing.
823 virtual NullTermStringView GetString(StringId id) const {
Lalit Maganti5c454312019-04-08 12:11:17 +0100824 return string_pool_.Get(id);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100825 }
826
Lalit Magantie9d40532018-06-29 13:15:06 +0100827 const Process& GetProcess(UniquePid upid) const {
Lalit Maganti676658b2018-11-20 18:24:31 +0000828 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100829 return unique_processes_[upid];
830 }
831
Eric Secklerb32cacf2019-09-27 16:51:19 +0100832 // Virtual for testing.
833 virtual const Thread& GetThread(UniqueTid utid) const {
Lalit Maganti1f64cfa2018-09-18 13:20:02 +0100834 // Allow utid == 0 for idle thread retrieval.
Florian Mayera1aaec22018-09-19 17:02:26 +0100835 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylor68e42192018-06-19 16:19:31 +0100836 return unique_threads_[utid];
837 }
838
Lalit Magantiac68e9c2019-09-09 18:12:15 +0100839 const tables::TrackTable& track_table() const { return track_table_; }
840 tables::TrackTable* mutable_track_table() { return &track_table_; }
Lalit Magantid11d3e02019-07-26 12:32:09 +0530841
Lalit Maganti53bdbb22019-09-25 11:11:18 +0100842 const tables::ProcessTrackTable& process_track_table() const {
843 return process_track_table_;
Lalit Maganti4ea78d92019-09-20 20:20:41 +0100844 }
Lalit Maganti53bdbb22019-09-25 11:11:18 +0100845 tables::ProcessTrackTable* mutable_process_track_table() {
846 return &process_track_table_;
Lalit Maganti4ea78d92019-09-20 20:20:41 +0100847 }
Eric Seckler5703ede2019-07-10 10:13:02 +0100848
Lalit Magantifedc15b2019-09-26 18:37:52 +0100849 const tables::ThreadTrackTable& thread_track_table() const {
850 return thread_track_table_;
851 }
852 tables::ThreadTrackTable* mutable_thread_track_table() {
853 return &thread_track_table_;
854 }
855
Lalit Maganti809b2f92019-11-07 13:27:26 +0000856 const tables::CounterTrackTable& counter_track_table() const {
857 return counter_track_table_;
858 }
859 tables::CounterTrackTable* mutable_counter_track_table() {
860 return &counter_track_table_;
861 }
862
863 const tables::ThreadCounterTrackTable& thread_counter_track_table() const {
864 return thread_counter_track_table_;
865 }
866 tables::ThreadCounterTrackTable* mutable_thread_counter_track_table() {
867 return &thread_counter_track_table_;
868 }
869
870 const tables::ProcessCounterTrackTable& process_counter_track_table() const {
871 return process_counter_track_table_;
872 }
873 tables::ProcessCounterTrackTable* mutable_process_counter_track_table() {
874 return &process_counter_track_table_;
875 }
876
877 const tables::CpuCounterTrackTable& cpu_counter_track_table() const {
878 return cpu_counter_track_table_;
879 }
880 tables::CpuCounterTrackTable* mutable_cpu_counter_track_table() {
881 return &cpu_counter_track_table_;
882 }
883
884 const tables::IrqCounterTrackTable& irq_counter_track_table() const {
885 return irq_counter_track_table_;
886 }
887 tables::IrqCounterTrackTable* mutable_irq_counter_track_table() {
888 return &irq_counter_track_table_;
889 }
890
891 const tables::SoftirqCounterTrackTable& softirq_counter_track_table() const {
892 return softirq_counter_track_table_;
893 }
894 tables::SoftirqCounterTrackTable* mutable_softirq_counter_track_table() {
895 return &softirq_counter_track_table_;
896 }
897
898 const tables::GpuCounterTrackTable& gpu_counter_track_table() const {
899 return gpu_counter_track_table_;
900 }
901 tables::GpuCounterTrackTable* mutable_gpu_counter_track_table() {
902 return &gpu_counter_track_table_;
903 }
904
Lalit Magantiff69c112018-09-24 12:07:47 +0100905 const Slices& slices() const { return slices_; }
Lalit Magantifde29042018-10-04 13:28:52 +0100906 Slices* mutable_slices() { return &slices_; }
907
Lalit Maganti1308e3f2019-12-09 20:24:20 +0000908 const tables::SliceTable& slice_table() const { return slice_table_; }
909 tables::SliceTable* mutable_slice_table() { return &slice_table_; }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100910
Eric Secklerd3b89d52019-07-10 15:36:29 +0100911 const ThreadSlices& thread_slices() const { return thread_slices_; }
912 ThreadSlices* mutable_thread_slices() { return &thread_slices_; }
913
Eric Secklerc3430c62019-07-22 10:49:58 +0100914 const VirtualTrackSlices& virtual_track_slices() const {
915 return virtual_track_slices_;
916 }
917 VirtualTrackSlices* mutable_virtual_track_slices() {
918 return &virtual_track_slices_;
919 }
920
Lalit Maganti20539c22019-09-04 12:36:10 +0100921 const tables::GpuSliceTable& gpu_slice_table() const {
922 return gpu_slice_table_;
923 }
924 tables::GpuSliceTable* mutable_gpu_slice_table() { return &gpu_slice_table_; }
Mikael Pessa7160ccc2019-07-25 11:19:26 -0700925
Lalit Maganti4b3b3ad2019-12-04 19:27:35 +0000926 const tables::CounterTable& counter_table() const { return counter_table_; }
927 tables::CounterTable* mutable_counter_table() { return &counter_table_; }
Isabelle Taylor14674d42018-09-07 11:33:11 +0100928
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700929 const SqlStats& sql_stats() const { return sql_stats_; }
930 SqlStats* mutable_sql_stats() { return &sql_stats_; }
931
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000932 const Instants& instants() const { return instants_; }
933 Instants* mutable_instants() { return &instants_; }
934
Primiano Tucci2c761ef2019-01-07 20:20:46 +0000935 const AndroidLogs& android_logs() const { return android_log_; }
936 AndroidLogs* mutable_android_log() { return &android_log_; }
937
Primiano Tucci0e38a142019-01-07 20:51:09 +0000938 const StatsMap& stats() const { return stats_; }
Lalit Maganti05e8c132018-11-09 18:16:12 +0000939
Ryan Savitski51413ad2019-07-09 14:25:21 +0100940 const Metadata& metadata() const { return metadata_; }
Ryan Savitski0476ee92019-07-09 14:29:33 +0100941 Metadata* mutable_metadata() { return &metadata_; }
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100942
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000943 const Args& args() const { return args_; }
944 Args* mutable_args() { return &args_; }
945
Lalit Maganti1d915a62019-01-07 12:10:42 +0000946 const RawEvents& raw_events() const { return raw_events_; }
947 RawEvents* mutable_raw_events() { return &raw_events_; }
948
Lalit Maganti45980c92019-12-20 13:17:44 +0000949 const tables::StackProfileMappingTable& stack_profile_mapping_table() const {
950 return stack_profile_mapping_table_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100951 }
Lalit Maganti45980c92019-12-20 13:17:44 +0000952 tables::StackProfileMappingTable* mutable_stack_profile_mapping_table() {
953 return &stack_profile_mapping_table_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100954 }
955
Oystein Eftevaag5419c582019-08-21 13:58:49 -0700956 const StackProfileFrames& stack_profile_frames() const {
957 return stack_profile_frames_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100958 }
Oystein Eftevaag5419c582019-08-21 13:58:49 -0700959 StackProfileFrames* mutable_stack_profile_frames() {
960 return &stack_profile_frames_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100961 }
962
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +0100963 const tables::StackProfileCallsiteTable& stack_profile_callsite_table()
964 const {
965 return stack_profile_callsite_table_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100966 }
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +0100967 tables::StackProfileCallsiteTable* mutable_stack_profile_callsite_table() {
968 return &stack_profile_callsite_table_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100969 }
970
Lalit Magantia5ffb202019-12-17 18:10:52 +0000971 const tables::HeapProfileAllocationTable& heap_profile_allocation_table()
972 const {
973 return heap_profile_allocation_table_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100974 }
Lalit Magantia5ffb202019-12-17 18:10:52 +0000975 tables::HeapProfileAllocationTable* mutable_heap_profile_allocation_table() {
976 return &heap_profile_allocation_table_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100977 }
Lalit Maganti0fd14ef2019-12-18 18:18:44 +0000978 const tables::CpuProfileStackSampleTable& cpu_profile_stack_sample_table()
979 const {
980 return cpu_profile_stack_sample_table_;
Oystein Eftevaag7f64c102019-08-29 10:27:31 -0700981 }
Lalit Maganti0fd14ef2019-12-18 18:18:44 +0000982 tables::CpuProfileStackSampleTable* mutable_cpu_profile_stack_sample_table() {
983 return &cpu_profile_stack_sample_table_;
Oystein Eftevaag7f64c102019-08-29 10:27:31 -0700984 }
Florian Mayer438b5ab2019-05-02 11:18:06 +0100985
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100986 const tables::SymbolTable& symbol_table() const { return symbol_table_; }
987
988 tables::SymbolTable* mutable_symbol_table() { return &symbol_table_; }
989
Florian Mayer25e013e2019-10-01 14:06:15 +0100990 const tables::HeapGraphObjectTable& heap_graph_object_table() const {
991 return heap_graph_object_table_;
992 }
993
994 tables::HeapGraphObjectTable* mutable_heap_graph_object_table() {
995 return &heap_graph_object_table_;
996 }
997
Florian Mayer9c01d162019-10-09 17:55:32 +0100998 const tables::HeapGraphReferenceTable& heap_graph_reference_table() const {
999 return heap_graph_reference_table_;
1000 }
1001
1002 tables::HeapGraphReferenceTable* mutable_heap_graph_reference_table() {
1003 return &heap_graph_reference_table_;
1004 }
1005
Lalit Maganti20539c22019-09-04 12:36:10 +01001006 const tables::GpuTrackTable& gpu_track_table() const {
1007 return gpu_track_table_;
1008 }
1009 tables::GpuTrackTable* mutable_gpu_track_table() { return &gpu_track_table_; }
Mikael Pessa7160ccc2019-07-25 11:19:26 -07001010
Mohammad Reza Zakerinasabb06d1852019-09-11 14:41:36 -04001011 const tables::VulkanMemoryAllocationsTable& vulkan_memory_allocations_table()
1012 const {
1013 return vulkan_memory_allocations_table_;
1014 }
1015
1016 tables::VulkanMemoryAllocationsTable*
1017 mutable_vulkan_memory_allocations_table() {
1018 return &vulkan_memory_allocations_table_;
1019 }
1020
Lalit Maganti5c454312019-04-08 12:11:17 +01001021 const StringPool& string_pool() const { return string_pool_; }
Lalit Magantiacda68b2018-10-29 15:23:25 +00001022
Hector Dearman5145e502019-09-18 16:52:24 +01001023 // |unique_processes_| always contains at least 1 element because the 0th ID
Isabelle Taylore7003fb2018-07-17 11:39:01 +01001024 // is reserved to indicate an invalid process.
Lalit Maganti9c6395b2019-01-17 00:25:09 +00001025 size_t process_count() const { return unique_processes_.size(); }
Primiano Tucci0d72a312018-08-07 14:42:45 +01001026
Hector Dearman5145e502019-09-18 16:52:24 +01001027 // |unique_threads_| always contains at least 1 element because the 0th ID
Isabelle Taylore7003fb2018-07-17 11:39:01 +01001028 // is reserved to indicate an invalid thread.
Lalit Maganti9c6395b2019-01-17 00:25:09 +00001029 size_t thread_count() const { return unique_threads_.size(); }
Isabelle Taylore7003fb2018-07-17 11:39:01 +01001030
Hector Dearman12323362018-08-09 16:09:28 +01001031 // Number of interned strings in the pool. Includes the empty string w/ ID=0.
1032 size_t string_count() const { return string_pool_.size(); }
1033
Ioannis Ilkosb8b11102019-01-29 17:56:55 +00001034 // Start / end ts (in nanoseconds) across the parsed trace events.
1035 // Returns (0, 0) if the trace is empty.
1036 std::pair<int64_t, int64_t> GetTraceTimestampBoundsNs() const;
1037
Lalit Maganti45980c92019-12-20 13:17:44 +00001038 // TODO(lalitm): remove this when we have a better home.
1039 std::vector<int64_t> FindMappingRow(StringId name, StringId build_id) const {
1040 auto it = stack_profile_mapping_index_.find(std::make_pair(name, build_id));
1041 if (it == stack_profile_mapping_index_.end())
1042 return {};
1043 return it->second;
1044 }
1045
1046 // TODO(lalitm): remove this when we have a better home.
1047 void InsertMappingRow(StringId name, StringId build_id, uint32_t row) {
1048 auto pair = std::make_pair(name, build_id);
1049 stack_profile_mapping_index_[pair].emplace_back(row);
1050 }
1051
Lalit Maganticaed37e2018-06-01 03:03:08 +01001052 private:
Primiano Tucci2da5d2e2018-08-10 14:23:31 +01001053 using StringHash = uint64_t;
Lalit Maganticaed37e2018-06-01 03:03:08 +01001054
Lalit Maganti5c454312019-04-08 12:11:17 +01001055 TraceStorage(const TraceStorage&) = delete;
1056 TraceStorage& operator=(const TraceStorage&) = delete;
1057
Lalit Maganti20539c22019-09-04 12:36:10 +01001058 TraceStorage(TraceStorage&&) = delete;
1059 TraceStorage& operator=(TraceStorage&&) = delete;
1060
Lalit Maganti45980c92019-12-20 13:17:44 +00001061 // TODO(lalitm): remove this when we find a better home for this.
1062 using MappingKey = std::pair<StringId /* name */, StringId /* build id */>;
1063 std::map<MappingKey, std::vector<int64_t>> stack_profile_mapping_index_;
1064
Lalit Maganti20539c22019-09-04 12:36:10 +01001065 // One entry for each unique string in the trace.
1066 StringPool string_pool_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +00001067
Lalit Maganti05e8c132018-11-09 18:16:12 +00001068 // Stats about parsing the trace.
Primiano Tucci0e38a142019-01-07 20:51:09 +00001069 StatsMap stats_{};
Lalit Maganti35622b72018-06-06 12:03:11 +01001070
Ryan Savitski51413ad2019-07-09 14:25:21 +01001071 // Extra data extracted from the trace. Includes:
1072 // * metadata from chrome and benchmarking infrastructure
1073 // * descriptions of android packages
1074 Metadata metadata_{};
Mikhail Khokhlove466c002019-05-23 13:33:33 +01001075
Lalit Magantid11d3e02019-07-26 12:32:09 +05301076 // Metadata for tracks.
Lalit Magantiac68e9c2019-09-09 18:12:15 +01001077 tables::TrackTable track_table_{&string_pool_, nullptr};
Lalit Maganti4ea78d92019-09-20 20:20:41 +01001078 tables::GpuTrackTable gpu_track_table_{&string_pool_, &track_table_};
Lalit Maganti53bdbb22019-09-25 11:11:18 +01001079 tables::ProcessTrackTable process_track_table_{&string_pool_, &track_table_};
Lalit Magantifedc15b2019-09-26 18:37:52 +01001080 tables::ThreadTrackTable thread_track_table_{&string_pool_, &track_table_};
Eric Seckler5703ede2019-07-10 10:13:02 +01001081
Lalit Maganti809b2f92019-11-07 13:27:26 +00001082 // Track tables for counter events.
1083 tables::CounterTrackTable counter_track_table_{&string_pool_, &track_table_};
1084 tables::ThreadCounterTrackTable thread_counter_track_table_{
1085 &string_pool_, &counter_track_table_};
1086 tables::ProcessCounterTrackTable process_counter_track_table_{
1087 &string_pool_, &counter_track_table_};
1088 tables::CpuCounterTrackTable cpu_counter_track_table_{&string_pool_,
1089 &counter_track_table_};
1090 tables::IrqCounterTrackTable irq_counter_track_table_{&string_pool_,
1091 &counter_track_table_};
1092 tables::SoftirqCounterTrackTable softirq_counter_track_table_{
1093 &string_pool_, &counter_track_table_};
1094 tables::GpuCounterTrackTable gpu_counter_track_table_{&string_pool_,
1095 &counter_track_table_};
1096
Mikael Pessa803090c2019-08-23 16:03:34 -07001097 // Metadata for gpu tracks.
Mikael Pessa803090c2019-08-23 16:03:34 -07001098 GpuContexts gpu_contexts_;
1099
Lalit Maganticaed37e2018-06-01 03:03:08 +01001100 // One entry for each CPU in the trace.
Lalit Magantiff69c112018-09-24 12:07:47 +01001101 Slices slices_;
Lalit Maganticaed37e2018-06-01 03:03:08 +01001102
Lalit Maganti6e9c55e2018-11-29 12:00:39 +00001103 // Args for all other tables.
1104 Args args_;
1105
Isabelle Taylor47328cf2018-06-12 14:33:59 +01001106 // One entry for each UniquePid, with UniquePid as the index.
Ioannis Ilkos9c03cbd2019-03-12 18:30:43 +00001107 // Never hold on to pointers to Process, as vector resize will
1108 // invalidate them.
1109 std::vector<Process> unique_processes_;
Isabelle Taylor68e42192018-06-19 16:19:31 +01001110
Isabelle Taylor68e42192018-06-19 16:19:31 +01001111 // One entry for each UniqueTid, with UniqueTid as the index.
Isabelle Taylor3dd366c2018-06-22 16:21:41 +01001112 std::deque<Thread> unique_threads_;
Primiano Tucci0d72a312018-08-07 14:42:45 +01001113
1114 // Slices coming from userspace events (e.g. Chromium TRACE_EVENT macros).
Lalit Maganti1308e3f2019-12-09 20:24:20 +00001115 tables::SliceTable slice_table_{&string_pool_, nullptr};
Isabelle Taylor15314ea2018-09-19 11:35:19 +01001116
Eric Secklerd3b89d52019-07-10 15:36:29 +01001117 // Additional attributes for threads slices (sub-type of NestableSlices).
1118 ThreadSlices thread_slices_;
1119
Eric Secklerc3430c62019-07-22 10:49:58 +01001120 // Additional attributes for virtual track slices (sub-type of
1121 // NestableSlices).
1122 VirtualTrackSlices virtual_track_slices_;
1123
Mikael Pessa803090c2019-08-23 16:03:34 -07001124 // Additional attributes for gpu track slices (sub-type of
1125 // NestableSlices).
Lalit Maganti20539c22019-09-04 12:36:10 +01001126 tables::GpuSliceTable gpu_slice_table_{&string_pool_, nullptr};
Mikael Pessa803090c2019-08-23 16:03:34 -07001127
Lalit Maganti8320e6d2019-03-14 18:49:33 +00001128 // The values from the Counter events from the trace. This includes CPU
1129 // frequency events as well systrace trace_marker counter events.
Lalit Maganti4b3b3ad2019-12-04 19:27:35 +00001130 tables::CounterTable counter_table_{&string_pool_, nullptr};
Primiano Tucci5cb84f82018-10-31 21:46:36 -07001131
1132 SqlStats sql_stats_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +00001133
Isabelle Taylorc8c11202018-11-05 11:36:22 +00001134 // These are instantaneous events in the trace. They have no duration
1135 // and do not have a value that make sense to track over time.
1136 // e.g. signal events
1137 Instants instants_;
Lalit Maganti1d915a62019-01-07 12:10:42 +00001138
1139 // Raw events are every ftrace event in the trace. The raw event includes
1140 // the timestamp and the pid. The args for the raw event will be in the
1141 // args table. This table can be used to generate a text version of the
1142 // trace.
1143 RawEvents raw_events_;
Primiano Tucci2c761ef2019-01-07 20:20:46 +00001144 AndroidLogs android_log_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001145
Lalit Maganti45980c92019-12-20 13:17:44 +00001146 tables::StackProfileMappingTable stack_profile_mapping_table_{&string_pool_,
1147 nullptr};
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001148 StackProfileFrames stack_profile_frames_;
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +01001149 tables::StackProfileCallsiteTable stack_profile_callsite_table_{&string_pool_,
1150 nullptr};
Lalit Magantia5ffb202019-12-17 18:10:52 +00001151 tables::HeapProfileAllocationTable heap_profile_allocation_table_{
1152 &string_pool_, nullptr};
Lalit Maganti0fd14ef2019-12-18 18:18:44 +00001153 tables::CpuProfileStackSampleTable cpu_profile_stack_sample_table_{
1154 &string_pool_, nullptr};
Ioannis Ilkose0b47f52019-09-18 11:14:57 +01001155
1156 // Symbol tables (mappings from frames to symbol names)
1157 tables::SymbolTable symbol_table_{&string_pool_, nullptr};
Florian Mayer25e013e2019-10-01 14:06:15 +01001158 tables::HeapGraphObjectTable heap_graph_object_table_{&string_pool_, nullptr};
Florian Mayer9c01d162019-10-09 17:55:32 +01001159 tables::HeapGraphReferenceTable heap_graph_reference_table_{&string_pool_,
1160 nullptr};
Mohammad Reza Zakerinasabb06d1852019-09-11 14:41:36 -04001161
1162 tables::VulkanMemoryAllocationsTable vulkan_memory_allocations_table_{
1163 &string_pool_, nullptr};
Lalit Maganticaed37e2018-06-01 03:03:08 +01001164};
1165
1166} // namespace trace_processor
1167} // namespace perfetto
1168
Florian Mayerbee52132019-05-02 13:59:56 +01001169namespace std {
1170
1171template <>
Lalit Magantib0e11f62020-01-02 14:17:58 +00001172struct hash<::perfetto::trace_processor::TrackId> {
1173 using argument_type = ::perfetto::trace_processor::TrackId;
1174 using result_type = size_t;
1175
1176 result_type operator()(const argument_type& r) const {
1177 return std::hash<uint32_t>{}(r.value);
1178 }
1179};
1180
1181template <>
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001182struct hash<
1183 ::perfetto::trace_processor::TraceStorage::StackProfileFrames::Row> {
Florian Mayerbee52132019-05-02 13:59:56 +01001184 using argument_type =
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001185 ::perfetto::trace_processor::TraceStorage::StackProfileFrames::Row;
Florian Mayerbee52132019-05-02 13:59:56 +01001186 using result_type = size_t;
1187
1188 result_type operator()(const argument_type& r) const {
1189 return std::hash<::perfetto::trace_processor::StringId>{}(r.name_id) ^
1190 std::hash<int64_t>{}(r.mapping_row) ^ std::hash<int64_t>{}(r.rel_pc);
1191 }
1192};
1193
1194template <>
1195struct hash<
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +01001196 ::perfetto::trace_processor::tables::StackProfileCallsiteTable::Row> {
Florian Mayerbee52132019-05-02 13:59:56 +01001197 using argument_type =
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +01001198 ::perfetto::trace_processor::tables::StackProfileCallsiteTable::Row;
Florian Mayerbee52132019-05-02 13:59:56 +01001199 using result_type = size_t;
1200
1201 result_type operator()(const argument_type& r) const {
1202 return std::hash<int64_t>{}(r.depth) ^ std::hash<int64_t>{}(r.parent_id) ^
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +01001203 std::hash<int64_t>{}(r.frame_id);
Florian Mayerbee52132019-05-02 13:59:56 +01001204 }
1205};
1206
1207template <>
1208struct hash<
Lalit Maganti45980c92019-12-20 13:17:44 +00001209 ::perfetto::trace_processor::tables::StackProfileMappingTable::Row> {
Florian Mayerbee52132019-05-02 13:59:56 +01001210 using argument_type =
Lalit Maganti45980c92019-12-20 13:17:44 +00001211 ::perfetto::trace_processor::tables::StackProfileMappingTable::Row;
Florian Mayerbee52132019-05-02 13:59:56 +01001212 using result_type = size_t;
1213
1214 result_type operator()(const argument_type& r) const {
1215 return std::hash<::perfetto::trace_processor::StringId>{}(r.build_id) ^
Florian Mayer12655732019-07-02 15:08:26 +01001216 std::hash<int64_t>{}(r.exact_offset) ^
1217 std::hash<int64_t>{}(r.start_offset) ^
1218 std::hash<int64_t>{}(r.start) ^ std::hash<int64_t>{}(r.end) ^
1219 std::hash<int64_t>{}(r.load_bias) ^
Lalit Maganti45980c92019-12-20 13:17:44 +00001220 std::hash<::perfetto::trace_processor::StringId>{}(r.name);
Florian Mayerbee52132019-05-02 13:59:56 +01001221 }
1222};
1223
1224} // namespace std
1225
Lalit Maganticaed37e2018-06-01 03:03:08 +01001226#endif // SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_