blob: 6736b6704dd163e1ecabe1c02a3ea2fb0a004d18 [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"
Lalit Magantib0b53ee2019-01-24 17:53:39 +000034#include "src/trace_processor/ftrace_utils.h"
Mikhail Khokhlove466c002019-05-23 13:33:33 +010035#include "src/trace_processor/metadata.h"
Primiano Tucci0e38a142019-01-07 20:51:09 +000036#include "src/trace_processor/stats.h"
Lalit Maganti5c454312019-04-08 12:11:17 +010037#include "src/trace_processor/string_pool.h"
Ioannis Ilkose0b47f52019-09-18 11:14:57 +010038#include "src/trace_processor/tables/profiler_tables.h"
Lalit Maganti20539c22019-09-04 12:36:10 +010039#include "src/trace_processor/tables/slice_tables.h"
40#include "src/trace_processor/tables/track_tables.h"
Mikhail Khokhlov85a0dd02019-05-17 14:22:28 +010041#include "src/trace_processor/variadic.h"
Lalit Maganti35622b72018-06-06 12:03:11 +010042
Lalit Maganticaed37e2018-06-01 03:03:08 +010043namespace perfetto {
44namespace trace_processor {
45
Isabelle Taylora0a22972018-08-03 12:06:12 +010046// UniquePid is an offset into |unique_processes_|. This is necessary because
47// Unix pids are reused and thus not guaranteed to be unique over a long
48// period of time.
49using UniquePid = uint32_t;
Primiano Tucci0d72a312018-08-07 14:42:45 +010050
Isabelle Taylora0a22972018-08-03 12:06:12 +010051// UniqueTid is an offset into |unique_threads_|. Necessary because tids can
52// be reused.
53using UniqueTid = uint32_t;
54
Primiano Tucci0d72a312018-08-07 14:42:45 +010055// StringId is an offset into |string_pool_|.
Lalit Maganti5c454312019-04-08 12:11:17 +010056using StringId = StringPool::Id;
Lalit Maganti1a2936f2019-08-29 17:42:33 +010057static const StringId kNullStringId = StringId(0);
Primiano Tucci0d72a312018-08-07 14:42:45 +010058
Lalit Maganti5ea9e932018-11-30 14:19:39 +000059// Identifiers for all the tables in the database.
60enum TableId : uint8_t {
61 // Intentionally don't have TableId == 0 so that RowId == 0 can refer to an
62 // invalid row id.
Lalit Maganti8320e6d2019-03-14 18:49:33 +000063 kCounterValues = 1,
Lalit Maganti1d915a62019-01-07 12:10:42 +000064 kRawEvents = 2,
Lalit Maganti66ed7ad2019-01-11 16:47:26 +000065 kInstants = 3,
Isabelle Taylorb9222c32019-01-31 10:58:37 +000066 kSched = 4,
Eric Seckler70cc4422019-05-28 16:00:23 +010067 kNestableSlices = 5,
Ryan Savitski51413ad2019-07-09 14:25:21 +010068 kMetadataTable = 6,
Lalit Maganti5ea9e932018-11-30 14:19:39 +000069};
70
71// The top 8 bits are set to the TableId and the bottom 32 to the row of the
72// table.
Lalit Maganti85ca4a82018-12-07 17:28:02 +000073using RowId = int64_t;
Lalit Maganti5ea9e932018-11-30 14:19:39 +000074static const RowId kInvalidRowId = 0;
75
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +000076using ArgSetId = uint32_t;
77static const ArgSetId kInvalidArgSetId = 0;
78
Eric Seckler5703ede2019-07-10 10:13:02 +010079using TrackId = uint32_t;
80
Isabelle Taylora97c5f52018-10-23 17:36:12 +010081enum RefType {
Primiano Tucci5403e4f2018-11-27 10:07:03 +000082 kRefNoRef = 0,
83 kRefUtid = 1,
84 kRefCpuId = 2,
85 kRefIrq = 3,
86 kRefSoftIrq = 4,
87 kRefUpid = 5,
Sidath Senanayake1f5f93a2019-06-06 22:24:15 +010088 kRefGpuId = 6,
Eric Seckler5703ede2019-07-10 10:13:02 +010089 kRefTrack = 7,
Primiano Tucci5403e4f2018-11-27 10:07:03 +000090 kRefMax
Isabelle Taylora97c5f52018-10-23 17:36:12 +010091};
Isabelle Taylor14674d42018-09-07 11:33:11 +010092
Eric Seckler972225e2019-04-18 11:07:12 +010093const std::vector<const char*>& GetRefTypeStringMap();
94
Lalit Maganticaed37e2018-06-01 03:03:08 +010095// Stores a data inside a trace file in a columnar form. This makes it efficient
96// to read or search across a single field of the trace (e.g. all the thread
97// names for a given CPU).
98class TraceStorage {
99 public:
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100100 TraceStorage();
Isabelle Taylora0a22972018-08-03 12:06:12 +0100101
102 virtual ~TraceStorage();
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100103
Isabelle Taylora0a22972018-08-03 12:06:12 +0100104 // Information about a unique process seen in a trace.
105 struct Process {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100106 explicit Process(uint32_t p) : pid(p) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000107 int64_t start_ns = 0;
Lalit Maganti637589a2019-07-04 17:25:29 +0100108 int64_t end_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100109 StringId name_id = 0;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100110 uint32_t pid = 0;
Lalit Maganti369b0572019-07-11 15:35:09 +0100111 base::Optional<UniquePid> parent_upid;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100112 };
113
114 // Information about a unique thread seen in a trace.
115 struct Thread {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100116 explicit Thread(uint32_t t) : tid(t) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000117 int64_t start_ns = 0;
Lalit Magantib5bd2332019-06-06 14:20:47 +0100118 int64_t end_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100119 StringId name_id = 0;
Lalit Maganti770886a2018-11-16 17:40:21 +0000120 base::Optional<UniquePid> upid;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100121 uint32_t tid = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100122 };
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100123
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000124 // Generic key value storage which can be referenced by other tables.
125 class Args {
126 public:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000127 struct Arg {
128 StringId flat_key = 0;
129 StringId key = 0;
130 Variadic value = Variadic::Integer(0);
131
132 // This is only used by the arg tracker and so is not part of the hash.
133 RowId row_id = 0;
134 };
135
136 struct ArgHasher {
137 uint64_t operator()(const Arg& arg) const noexcept {
Lalit Maganti1f464742019-02-28 13:49:31 +0000138 base::Hash hash;
139 hash.Update(arg.key);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000140 // We don't hash arg.flat_key because it's a subsequence of arg.key.
141 switch (arg.value.type) {
142 case Variadic::Type::kInt:
Lalit Maganti1f464742019-02-28 13:49:31 +0000143 hash.Update(arg.value.int_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000144 break;
Eric Secklerc93823e2019-06-03 16:49:19 +0100145 case Variadic::Type::kUint:
146 hash.Update(arg.value.uint_value);
147 break;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000148 case Variadic::Type::kString:
Lalit Maganti1f464742019-02-28 13:49:31 +0000149 hash.Update(arg.value.string_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000150 break;
151 case Variadic::Type::kReal:
Lalit Maganti1f464742019-02-28 13:49:31 +0000152 hash.Update(arg.value.real_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000153 break;
Eric Secklerc93823e2019-06-03 16:49:19 +0100154 case Variadic::Type::kPointer:
155 hash.Update(arg.value.pointer_value);
156 break;
157 case Variadic::Type::kBool:
158 hash.Update(arg.value.bool_value);
159 break;
160 case Variadic::Type::kJson:
161 hash.Update(arg.value.json_value);
162 break;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000163 }
Lalit Maganti1f464742019-02-28 13:49:31 +0000164 return hash.digest();
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000165 }
166 };
167
168 const std::deque<ArgSetId>& set_ids() const { return set_ids_; }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000169 const std::deque<StringId>& flat_keys() const { return flat_keys_; }
170 const std::deque<StringId>& keys() const { return keys_; }
Lalit Maganti1d915a62019-01-07 12:10:42 +0000171 const std::deque<Variadic>& arg_values() const { return arg_values_; }
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000172 uint32_t args_count() const {
173 return static_cast<uint32_t>(set_ids_.size());
Lalit Maganti79472be2018-12-04 13:41:27 +0000174 }
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000175
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000176 ArgSetId AddArgSet(const std::vector<Arg>& args,
177 uint32_t begin,
178 uint32_t end) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000179 base::Hash hash;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000180 for (uint32_t i = begin; i < end; i++) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000181 hash.Update(ArgHasher()(args[i]));
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000182 }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000183
Lalit Maganti1f464742019-02-28 13:49:31 +0000184 ArgSetHash digest = hash.digest();
185 auto it = arg_row_for_hash_.find(digest);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000186 if (it != arg_row_for_hash_.end()) {
187 return set_ids_[it->second];
188 }
189
190 // The +1 ensures that nothing has an id == kInvalidArgSetId == 0.
191 ArgSetId id = static_cast<uint32_t>(arg_row_for_hash_.size()) + 1;
Lalit Maganti1f464742019-02-28 13:49:31 +0000192 arg_row_for_hash_.emplace(digest, args_count());
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000193 for (uint32_t i = begin; i < end; i++) {
194 const auto& arg = args[i];
195 set_ids_.emplace_back(id);
196 flat_keys_.emplace_back(arg.flat_key);
197 keys_.emplace_back(arg.key);
198 arg_values_.emplace_back(arg.value);
199 }
200 return id;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000201 }
202
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000203 private:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000204 using ArgSetHash = uint64_t;
205
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000206 std::deque<ArgSetId> set_ids_;
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000207 std::deque<StringId> flat_keys_;
208 std::deque<StringId> keys_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000209 std::deque<Variadic> arg_values_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000210
211 std::unordered_map<ArgSetHash, uint32_t> arg_row_for_hash_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000212 };
213
Lalit Magantid11d3e02019-07-26 12:32:09 +0530214 class Tracks {
215 public:
216 inline uint32_t AddTrack(StringId name) {
217 names_.emplace_back(name);
218 return track_count() - 1;
219 }
220
221 uint32_t track_count() const {
222 return static_cast<uint32_t>(names_.size());
223 }
224
225 const std::deque<StringId>& names() const { return names_; }
226
227 private:
228 std::deque<StringId> names_;
229 };
230
Mikael Pessa803090c2019-08-23 16:03:34 -0700231 class GpuContexts {
232 public:
233 inline void AddGpuContext(uint64_t context_id,
234 UniquePid upid,
235 uint32_t priority) {
236 context_ids_.emplace_back(context_id);
237 upids_.emplace_back(upid);
238 priorities_.emplace_back(priority);
239 }
240
241 uint32_t gpu_context_count() const {
242 return static_cast<uint32_t>(context_ids_.size());
243 }
244
245 const std::deque<uint64_t>& context_ids() const { return context_ids_; }
246 const std::deque<UniquePid>& upids() const { return upids_; }
247 const std::deque<uint32_t>& priorities() const { return priorities_; }
248
249 private:
250 std::deque<uint64_t> context_ids_;
251 std::deque<UniquePid> upids_;
252 std::deque<uint32_t> priorities_;
253 };
254
Lalit Magantiff69c112018-09-24 12:07:47 +0100255 class Slices {
Lalit Maganti35622b72018-06-06 12:03:11 +0100256 public:
Lalit Magantifde29042018-10-04 13:28:52 +0100257 inline size_t AddSlice(uint32_t cpu,
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000258 int64_t start_ns,
259 int64_t duration_ns,
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000260 UniqueTid utid,
261 ftrace_utils::TaskState end_state,
262 int32_t priority) {
Lalit Magantiff69c112018-09-24 12:07:47 +0100263 cpus_.emplace_back(cpu);
Lalit Maganti35622b72018-06-06 12:03:11 +0100264 start_ns_.emplace_back(start_ns);
265 durations_.emplace_back(duration_ns);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100266 utids_.emplace_back(utid);
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000267 end_states_.emplace_back(end_state);
268 priorities_.emplace_back(priority);
Lalit Maganti58638932019-01-31 10:48:26 +0000269
270 if (utid >= rows_for_utids_.size())
271 rows_for_utids_.resize(utid + 1);
272 rows_for_utids_[utid].emplace_back(slice_count() - 1);
Lalit Magantifde29042018-10-04 13:28:52 +0100273 return slice_count() - 1;
274 }
275
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000276 void set_duration(size_t index, int64_t duration_ns) {
Lalit Magantifde29042018-10-04 13:28:52 +0100277 durations_[index] = duration_ns;
Lalit Maganti35622b72018-06-06 12:03:11 +0100278 }
279
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000280 void set_end_state(size_t index, ftrace_utils::TaskState end_state) {
281 end_states_[index] = end_state;
282 }
283
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100284 size_t slice_count() const { return start_ns_.size(); }
Lalit Maganti35622b72018-06-06 12:03:11 +0100285
Lalit Magantiff69c112018-09-24 12:07:47 +0100286 const std::deque<uint32_t>& cpus() const { return cpus_; }
287
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000288 const std::deque<int64_t>& start_ns() const { return start_ns_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100289
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000290 const std::deque<int64_t>& durations() const { return durations_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100291
Isabelle Taylor68e42192018-06-19 16:19:31 +0100292 const std::deque<UniqueTid>& utids() const { return utids_; }
293
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000294 const std::deque<ftrace_utils::TaskState>& end_state() const {
295 return end_states_;
296 }
297
298 const std::deque<int32_t>& priorities() const { return priorities_; }
299
Lalit Maganti58638932019-01-31 10:48:26 +0000300 const std::deque<std::vector<uint32_t>>& rows_for_utids() const {
Lalit Magantif0f09c32019-01-18 17:29:31 +0000301 return rows_for_utids_;
302 }
303
Lalit Maganti35622b72018-06-06 12:03:11 +0100304 private:
Hector Dearman947f12a2018-09-11 16:50:36 +0100305 // Each deque below has the same number of entries (the number of slices
Lalit Maganti35622b72018-06-06 12:03:11 +0100306 // in the trace for the CPU).
Lalit Magantiff69c112018-09-24 12:07:47 +0100307 std::deque<uint32_t> cpus_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000308 std::deque<int64_t> start_ns_;
309 std::deque<int64_t> durations_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100310 std::deque<UniqueTid> utids_;
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000311 std::deque<ftrace_utils::TaskState> end_states_;
312 std::deque<int32_t> priorities_;
Lalit Maganti58638932019-01-31 10:48:26 +0000313
314 // One row per utid.
315 std::deque<std::vector<uint32_t>> rows_for_utids_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100316 };
Isabelle Taylor68e42192018-06-19 16:19:31 +0100317
Primiano Tucci0d72a312018-08-07 14:42:45 +0100318 class NestableSlices {
319 public:
Eric Seckler70cc4422019-05-28 16:00:23 +0100320 inline uint32_t AddSlice(int64_t start_ns,
321 int64_t duration_ns,
322 int64_t ref,
323 RefType type,
Lalit Maganti81a02cd2019-07-12 17:05:11 +0100324 StringId category,
Eric Seckler70cc4422019-05-28 16:00:23 +0100325 StringId name,
326 uint8_t depth,
327 int64_t stack_id,
328 int64_t parent_stack_id) {
Primiano Tucci0d72a312018-08-07 14:42:45 +0100329 start_ns_.emplace_back(start_ns);
330 durations_.emplace_back(duration_ns);
Eric Seckler972225e2019-04-18 11:07:12 +0100331 refs_.emplace_back(ref);
332 types_.emplace_back(type);
Lalit Maganti81a02cd2019-07-12 17:05:11 +0100333 categories_.emplace_back(category);
Primiano Tucci0d72a312018-08-07 14:42:45 +0100334 names_.emplace_back(name);
335 depths_.emplace_back(depth);
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100336 stack_ids_.emplace_back(stack_id);
337 parent_stack_ids_.emplace_back(parent_stack_id);
Eric Seckler70cc4422019-05-28 16:00:23 +0100338 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000339 return slice_count() - 1;
340 }
341
Eric Seckler70cc4422019-05-28 16:00:23 +0100342 void set_duration(uint32_t index, int64_t duration_ns) {
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000343 durations_[index] = duration_ns;
344 }
345
Eric Seckler70cc4422019-05-28 16:00:23 +0100346 void set_stack_id(uint32_t index, int64_t stack_id) {
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000347 stack_ids_[index] = stack_id;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100348 }
349
Eric Seckler70cc4422019-05-28 16:00:23 +0100350 void set_arg_set_id(uint32_t index, ArgSetId id) {
351 arg_set_ids_[index] = id;
352 }
353
354 uint32_t slice_count() const {
355 return static_cast<uint32_t>(start_ns_.size());
356 }
357
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000358 const std::deque<int64_t>& start_ns() const { return start_ns_; }
359 const std::deque<int64_t>& durations() const { return durations_; }
Eric Seckler972225e2019-04-18 11:07:12 +0100360 const std::deque<int64_t>& refs() const { return refs_; }
361 const std::deque<RefType>& types() const { return types_; }
Lalit Maganti81a02cd2019-07-12 17:05:11 +0100362 const std::deque<StringId>& categories() const { return categories_; }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100363 const std::deque<StringId>& names() const { return names_; }
364 const std::deque<uint8_t>& depths() const { return depths_; }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000365 const std::deque<int64_t>& stack_ids() const { return stack_ids_; }
366 const std::deque<int64_t>& parent_stack_ids() const {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100367 return parent_stack_ids_;
368 }
Eric Seckler70cc4422019-05-28 16:00:23 +0100369 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100370
371 private:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000372 std::deque<int64_t> start_ns_;
373 std::deque<int64_t> durations_;
Eric Seckler972225e2019-04-18 11:07:12 +0100374 std::deque<int64_t> refs_;
375 std::deque<RefType> types_;
Lalit Maganti81a02cd2019-07-12 17:05:11 +0100376 std::deque<StringId> categories_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100377 std::deque<StringId> names_;
378 std::deque<uint8_t> depths_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000379 std::deque<int64_t> stack_ids_;
380 std::deque<int64_t> parent_stack_ids_;
Eric Seckler70cc4422019-05-28 16:00:23 +0100381 std::deque<ArgSetId> arg_set_ids_;
Lalit Maganti35622b72018-06-06 12:03:11 +0100382 };
383
Eric Secklerd3b89d52019-07-10 15:36:29 +0100384 class ThreadSlices {
385 public:
386 inline uint32_t AddThreadSlice(uint32_t slice_id,
387 int64_t thread_timestamp_ns,
388 int64_t thread_duration_ns,
389 int64_t thread_instruction_count,
390 int64_t thread_instruction_delta) {
391 slice_ids_.emplace_back(slice_id);
392 thread_timestamp_ns_.emplace_back(thread_timestamp_ns);
393 thread_duration_ns_.emplace_back(thread_duration_ns);
394 thread_instruction_counts_.emplace_back(thread_instruction_count);
395 thread_instruction_deltas_.emplace_back(thread_instruction_delta);
396 return slice_count() - 1;
397 }
398
Eric Secklerc3430c62019-07-22 10:49:58 +0100399 uint32_t slice_count() const {
400 return static_cast<uint32_t>(slice_ids_.size());
Eric Secklerd3b89d52019-07-10 15:36:29 +0100401 }
402
Eric Secklerc3430c62019-07-22 10:49:58 +0100403 const std::deque<uint32_t>& slice_ids() const { return slice_ids_; }
404 const std::deque<int64_t>& thread_timestamp_ns() const {
405 return thread_timestamp_ns_;
406 }
407 const std::deque<int64_t>& thread_duration_ns() const {
408 return thread_duration_ns_;
409 }
410 const std::deque<int64_t>& thread_instruction_counts() const {
411 return thread_instruction_counts_;
412 }
413 const std::deque<int64_t>& thread_instruction_deltas() const {
414 return thread_instruction_deltas_;
415 }
416
417 base::Optional<uint32_t> FindRowForSliceId(uint32_t slice_id) const {
418 auto it =
419 std::lower_bound(slice_ids().begin(), slice_ids().end(), slice_id);
420 if (it != slice_ids().end() && *it == slice_id) {
421 return static_cast<uint32_t>(std::distance(slice_ids().begin(), it));
422 }
423 return base::nullopt;
424 }
425
Eric Seckler54f30a32019-07-19 15:10:29 +0100426 void UpdateThreadDeltasForSliceId(uint32_t slice_id,
427 int64_t end_thread_timestamp_ns,
428 int64_t end_thread_instruction_count) {
Eric Secklerc3430c62019-07-22 10:49:58 +0100429 uint32_t row = *FindRowForSliceId(slice_id);
430 int64_t begin_ns = thread_timestamp_ns_[row];
431 thread_duration_ns_[row] = end_thread_timestamp_ns - begin_ns;
Eric Seckler54f30a32019-07-19 15:10:29 +0100432 int64_t begin_ticount = thread_instruction_counts_[row];
433 thread_instruction_deltas_[row] =
434 end_thread_instruction_count - begin_ticount;
Eric Secklerc3430c62019-07-22 10:49:58 +0100435 }
436
437 private:
438 std::deque<uint32_t> slice_ids_;
439 std::deque<int64_t> thread_timestamp_ns_;
440 std::deque<int64_t> thread_duration_ns_;
441 std::deque<int64_t> thread_instruction_counts_;
442 std::deque<int64_t> thread_instruction_deltas_;
443 };
444
445 class VirtualTrackSlices {
446 public:
447 inline uint32_t AddVirtualTrackSlice(uint32_t slice_id,
448 int64_t thread_timestamp_ns,
449 int64_t thread_duration_ns,
450 int64_t thread_instruction_count,
451 int64_t thread_instruction_delta) {
452 slice_ids_.emplace_back(slice_id);
453 thread_timestamp_ns_.emplace_back(thread_timestamp_ns);
454 thread_duration_ns_.emplace_back(thread_duration_ns);
455 thread_instruction_counts_.emplace_back(thread_instruction_count);
456 thread_instruction_deltas_.emplace_back(thread_instruction_delta);
457 return slice_count() - 1;
Eric Secklerd3b89d52019-07-10 15:36:29 +0100458 }
459
460 uint32_t slice_count() const {
461 return static_cast<uint32_t>(slice_ids_.size());
462 }
463
464 const std::deque<uint32_t>& slice_ids() const { return slice_ids_; }
465 const std::deque<int64_t>& thread_timestamp_ns() const {
466 return thread_timestamp_ns_;
467 }
468 const std::deque<int64_t>& thread_duration_ns() const {
469 return thread_duration_ns_;
470 }
471 const std::deque<int64_t>& thread_instruction_counts() const {
472 return thread_instruction_counts_;
473 }
474 const std::deque<int64_t>& thread_instruction_deltas() const {
475 return thread_instruction_deltas_;
476 }
477
Mikhail Khokhlov7db04912019-07-18 16:11:11 +0100478 base::Optional<uint32_t> FindRowForSliceId(uint32_t slice_id) const {
Eric Secklerd3b89d52019-07-10 15:36:29 +0100479 auto it =
480 std::lower_bound(slice_ids().begin(), slice_ids().end(), slice_id);
Mikhail Khokhlov7db04912019-07-18 16:11:11 +0100481 if (it != slice_ids().end() && *it == slice_id) {
482 return static_cast<uint32_t>(std::distance(slice_ids().begin(), it));
483 }
484 return base::nullopt;
Eric Secklerd3b89d52019-07-10 15:36:29 +0100485 }
486
Eric Seckler54f30a32019-07-19 15:10:29 +0100487 void UpdateThreadDeltasForSliceId(uint32_t slice_id,
488 int64_t end_thread_timestamp_ns,
489 int64_t end_thread_instruction_count) {
Mikhail Khokhlov7db04912019-07-18 16:11:11 +0100490 uint32_t row = *FindRowForSliceId(slice_id);
Eric Secklerd3b89d52019-07-10 15:36:29 +0100491 int64_t begin_ns = thread_timestamp_ns_[row];
492 thread_duration_ns_[row] = end_thread_timestamp_ns - begin_ns;
Eric Seckler54f30a32019-07-19 15:10:29 +0100493 int64_t begin_ticount = thread_instruction_counts_[row];
494 thread_instruction_deltas_[row] =
495 end_thread_instruction_count - begin_ticount;
Eric Secklerd3b89d52019-07-10 15:36:29 +0100496 }
497
498 private:
499 std::deque<uint32_t> slice_ids_;
500 std::deque<int64_t> thread_timestamp_ns_;
501 std::deque<int64_t> thread_duration_ns_;
502 std::deque<int64_t> thread_instruction_counts_;
503 std::deque<int64_t> thread_instruction_deltas_;
504 };
505
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000506 class CounterDefinitions {
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100507 public:
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000508 using Id = uint32_t;
Lalit Maganti521d97b2019-04-29 13:47:03 +0100509 static constexpr Id kInvalidId = std::numeric_limits<Id>::max();
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000510
511 inline Id AddCounterDefinition(StringId name_id,
512 int64_t ref,
Pascal Muetschard91d07892019-08-26 13:55:06 -0700513 RefType type,
Pascal Muetschardceb5c822019-08-26 14:39:15 -0700514 StringId desc_id = 0,
515 StringId unit_id = 0) {
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000516 base::Hash hash;
517 hash.Update(name_id);
518 hash.Update(ref);
519 hash.Update(type);
520
521 // TODO(lalitm): this is a perf bottleneck and likely we can do something
522 // quite a bit better here.
523 uint64_t digest = hash.digest();
524 auto it = hash_to_row_idx_.find(digest);
525 if (it != hash_to_row_idx_.end())
526 return it->second;
527
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100528 name_ids_.emplace_back(name_id);
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100529 refs_.emplace_back(ref);
530 types_.emplace_back(type);
Pascal Muetschard91d07892019-08-26 13:55:06 -0700531 desc_ids_.emplace_back(desc_id);
Pascal Muetschardceb5c822019-08-26 14:39:15 -0700532 unit_ids_.emplace_back(unit_id);
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000533 hash_to_row_idx_.emplace(digest, size() - 1);
534 return size() - 1;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100535 }
Lalit Magantifde29042018-10-04 13:28:52 +0100536
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000537 uint32_t size() const { return static_cast<uint32_t>(name_ids_.size()); }
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100538
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100539 const std::deque<StringId>& name_ids() const { return name_ids_; }
540
Pascal Muetschard91d07892019-08-26 13:55:06 -0700541 const std::deque<StringId>& desc_ids() const { return desc_ids_; }
542
Pascal Muetschardceb5c822019-08-26 14:39:15 -0700543 const std::deque<StringId>& unit_ids() const { return unit_ids_; }
544
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100545 const std::deque<int64_t>& refs() const { return refs_; }
546
547 const std::deque<RefType>& types() const { return types_; }
548
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000549 private:
550 std::deque<StringId> name_ids_;
551 std::deque<int64_t> refs_;
552 std::deque<RefType> types_;
Pascal Muetschard91d07892019-08-26 13:55:06 -0700553 std::deque<StringId> desc_ids_;
Pascal Muetschardceb5c822019-08-26 14:39:15 -0700554 std::deque<StringId> unit_ids_;
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000555
556 std::unordered_map<uint64_t, uint32_t> hash_to_row_idx_;
557 };
558
559 class CounterValues {
560 public:
561 inline uint32_t AddCounterValue(CounterDefinitions::Id counter_id,
562 int64_t timestamp,
563 double value) {
564 counter_ids_.emplace_back(counter_id);
565 timestamps_.emplace_back(timestamp);
566 values_.emplace_back(value);
567 arg_set_ids_.emplace_back(kInvalidArgSetId);
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100568
Lalit Maganti521d97b2019-04-29 13:47:03 +0100569 if (counter_id != CounterDefinitions::kInvalidId) {
570 if (counter_id >= rows_for_counter_id_.size()) {
571 rows_for_counter_id_.resize(counter_id + 1);
572 }
573 rows_for_counter_id_[counter_id].emplace_back(size() - 1);
574 }
575 return size() - 1;
576 }
577
578 void set_counter_id(uint32_t index, CounterDefinitions::Id counter_id) {
579 PERFETTO_DCHECK(counter_ids_[index] == CounterDefinitions::kInvalidId);
580
581 counter_ids_[index] = counter_id;
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100582 if (counter_id >= rows_for_counter_id_.size()) {
583 rows_for_counter_id_.resize(counter_id + 1);
584 }
Lalit Maganti521d97b2019-04-29 13:47:03 +0100585
586 auto* new_rows = &rows_for_counter_id_[counter_id];
587 new_rows->insert(
588 std::upper_bound(new_rows->begin(), new_rows->end(), index), index);
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000589 }
590
591 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
592
593 uint32_t size() const { return static_cast<uint32_t>(counter_ids_.size()); }
594
595 const std::deque<CounterDefinitions::Id>& counter_ids() const {
596 return counter_ids_;
597 }
598
599 const std::deque<int64_t>& timestamps() const { return timestamps_; }
600
601 const std::deque<double>& values() const { return values_; }
602
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000603 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
604
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100605 const std::deque<std::vector<uint32_t>>& rows_for_counter_id() const {
606 return rows_for_counter_id_;
607 }
608
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100609 private:
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000610 std::deque<CounterDefinitions::Id> counter_ids_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000611 std::deque<int64_t> timestamps_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100612 std::deque<double> values_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000613 std::deque<ArgSetId> arg_set_ids_;
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100614
615 // Indexed by counter_id value and contains the row numbers corresponding to
616 // it.
617 std::deque<std::vector<uint32_t>> rows_for_counter_id_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100618 };
619
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700620 class SqlStats {
621 public:
622 static constexpr size_t kMaxLogEntries = 100;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100623 uint32_t RecordQueryBegin(const std::string& query,
624 int64_t time_queued,
625 int64_t time_started);
626 void RecordQueryFirstNext(uint32_t row, int64_t time_first_next);
627 void RecordQueryEnd(uint32_t row, int64_t time_end);
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700628 size_t size() const { return queries_.size(); }
629 const std::deque<std::string>& queries() const { return queries_; }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000630 const std::deque<int64_t>& times_queued() const { return times_queued_; }
631 const std::deque<int64_t>& times_started() const { return times_started_; }
Lalit Magantiaac2f652019-04-30 12:16:21 +0100632 const std::deque<int64_t>& times_first_next() const {
633 return times_first_next_;
634 }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000635 const std::deque<int64_t>& times_ended() const { return times_ended_; }
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700636
637 private:
Lalit Magantiaac2f652019-04-30 12:16:21 +0100638 uint32_t popped_queries_ = 0;
639
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700640 std::deque<std::string> queries_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000641 std::deque<int64_t> times_queued_;
642 std::deque<int64_t> times_started_;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100643 std::deque<int64_t> times_first_next_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000644 std::deque<int64_t> times_ended_;
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700645 };
646
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000647 class Instants {
648 public:
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000649 inline uint32_t AddInstantEvent(int64_t timestamp,
650 StringId name_id,
651 double value,
652 int64_t ref,
653 RefType type) {
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000654 timestamps_.emplace_back(timestamp);
655 name_ids_.emplace_back(name_id);
656 values_.emplace_back(value);
657 refs_.emplace_back(ref);
658 types_.emplace_back(type);
Lalit Maganti1c21d172019-02-07 10:48:24 +0000659 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000660 return static_cast<uint32_t>(instant_count() - 1);
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000661 }
662
Lalit Maganti521d97b2019-04-29 13:47:03 +0100663 void set_ref(uint32_t row, int64_t ref) { refs_[row] = ref; }
664
Lalit Maganti1c21d172019-02-07 10:48:24 +0000665 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
666
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000667 size_t instant_count() const { return timestamps_.size(); }
668
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000669 const std::deque<int64_t>& timestamps() const { return timestamps_; }
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000670
671 const std::deque<StringId>& name_ids() const { return name_ids_; }
672
673 const std::deque<double>& values() const { return values_; }
674
675 const std::deque<int64_t>& refs() const { return refs_; }
676
677 const std::deque<RefType>& types() const { return types_; }
678
Lalit Maganti1c21d172019-02-07 10:48:24 +0000679 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
680
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000681 private:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000682 std::deque<int64_t> timestamps_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000683 std::deque<StringId> name_ids_;
684 std::deque<double> values_;
685 std::deque<int64_t> refs_;
686 std::deque<RefType> types_;
Lalit Maganti1c21d172019-02-07 10:48:24 +0000687 std::deque<ArgSetId> arg_set_ids_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000688 };
689
Lalit Maganti1d915a62019-01-07 12:10:42 +0000690 class RawEvents {
691 public:
692 inline RowId AddRawEvent(int64_t timestamp,
693 StringId name_id,
Lalit Magantie87cc812019-01-10 15:20:06 +0000694 uint32_t cpu,
Lalit Maganti1d915a62019-01-07 12:10:42 +0000695 UniqueTid utid) {
696 timestamps_.emplace_back(timestamp);
697 name_ids_.emplace_back(name_id);
Lalit Magantie87cc812019-01-10 15:20:06 +0000698 cpus_.emplace_back(cpu);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000699 utids_.emplace_back(utid);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000700 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000701 return CreateRowId(TableId::kRawEvents,
702 static_cast<uint32_t>(raw_event_count() - 1));
703 }
704
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000705 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
706
Lalit Maganti1d915a62019-01-07 12:10:42 +0000707 size_t raw_event_count() const { return timestamps_.size(); }
708
709 const std::deque<int64_t>& timestamps() const { return timestamps_; }
710
711 const std::deque<StringId>& name_ids() const { return name_ids_; }
712
Lalit Magantie87cc812019-01-10 15:20:06 +0000713 const std::deque<uint32_t>& cpus() const { return cpus_; }
714
Lalit Maganti1d915a62019-01-07 12:10:42 +0000715 const std::deque<UniqueTid>& utids() const { return utids_; }
716
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000717 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
718
Lalit Maganti1d915a62019-01-07 12:10:42 +0000719 private:
720 std::deque<int64_t> timestamps_;
721 std::deque<StringId> name_ids_;
Lalit Magantie87cc812019-01-10 15:20:06 +0000722 std::deque<uint32_t> cpus_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000723 std::deque<UniqueTid> utids_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000724 std::deque<ArgSetId> arg_set_ids_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000725 };
726
Primiano Tucci2c761ef2019-01-07 20:20:46 +0000727 class AndroidLogs {
728 public:
729 inline size_t AddLogEvent(int64_t timestamp,
730 UniqueTid utid,
731 uint8_t prio,
732 StringId tag_id,
733 StringId msg_id) {
734 timestamps_.emplace_back(timestamp);
735 utids_.emplace_back(utid);
736 prios_.emplace_back(prio);
737 tag_ids_.emplace_back(tag_id);
738 msg_ids_.emplace_back(msg_id);
739 return size() - 1;
740 }
741
742 size_t size() const { return timestamps_.size(); }
743
744 const std::deque<int64_t>& timestamps() const { return timestamps_; }
745 const std::deque<UniqueTid>& utids() const { return utids_; }
746 const std::deque<uint8_t>& prios() const { return prios_; }
747 const std::deque<StringId>& tag_ids() const { return tag_ids_; }
748 const std::deque<StringId>& msg_ids() const { return msg_ids_; }
749
750 private:
751 std::deque<int64_t> timestamps_;
752 std::deque<UniqueTid> utids_;
753 std::deque<uint8_t> prios_;
754 std::deque<StringId> tag_ids_;
755 std::deque<StringId> msg_ids_;
756 };
757
Primiano Tucci0e38a142019-01-07 20:51:09 +0000758 struct Stats {
759 using IndexMap = std::map<int, int64_t>;
760 int64_t value = 0;
761 IndexMap indexed_values;
762 };
763 using StatsMap = std::array<Stats, stats::kNumKeys>;
764
Ryan Savitski51413ad2019-07-09 14:25:21 +0100765 class Metadata {
766 public:
767 const std::deque<metadata::KeyIDs>& keys() const { return keys_; }
768 const std::deque<Variadic>& values() const { return values_; }
769
770 RowId SetScalarMetadata(metadata::KeyIDs key, Variadic value) {
771 PERFETTO_DCHECK(key < metadata::kNumKeys);
772 PERFETTO_DCHECK(metadata::kKeyTypes[key] == metadata::kSingle);
773 PERFETTO_DCHECK(value.type == metadata::kValueTypes[key]);
774
775 // Already set - on release builds, overwrite the previous value.
776 auto it = scalar_indices.find(key);
777 if (it != scalar_indices.end()) {
778 PERFETTO_DFATAL("Setting a scalar metadata entry more than once.");
779 uint32_t index = static_cast<uint32_t>(it->second);
780 values_[index] = value;
781 return TraceStorage::CreateRowId(kMetadataTable, index);
782 }
783 // First time setting this key.
784 keys_.push_back(key);
785 values_.push_back(value);
786 uint32_t index = static_cast<uint32_t>(keys_.size() - 1);
787 scalar_indices[key] = index;
788 return TraceStorage::CreateRowId(kMetadataTable, index);
789 }
790
791 RowId AppendMetadata(metadata::KeyIDs key, Variadic value) {
792 PERFETTO_DCHECK(key < metadata::kNumKeys);
793 PERFETTO_DCHECK(metadata::kKeyTypes[key] == metadata::kMulti);
794 PERFETTO_DCHECK(value.type == metadata::kValueTypes[key]);
795
796 keys_.push_back(key);
797 values_.push_back(value);
798 uint32_t index = static_cast<uint32_t>(keys_.size() - 1);
799 return TraceStorage::CreateRowId(kMetadataTable, index);
800 }
801
Ryan Savitski0476ee92019-07-09 14:29:33 +0100802 void OverwriteMetadata(uint32_t index, Variadic value) {
803 PERFETTO_DCHECK(index < values_.size());
804 values_[index] = value;
805 }
806
Ryan Savitski51413ad2019-07-09 14:25:21 +0100807 private:
808 std::deque<metadata::KeyIDs> keys_;
809 std::deque<Variadic> values_;
810 // Extraneous state to track locations of entries that should have at most
811 // one row. Used only to maintain uniqueness during insertions.
812 std::map<metadata::KeyIDs, uint32_t> scalar_indices;
813 };
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100814
Oystein Eftevaag5419c582019-08-21 13:58:49 -0700815 class StackProfileFrames {
Florian Mayer438b5ab2019-05-02 11:18:06 +0100816 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100817 struct Row {
818 StringId name_id;
819 int64_t mapping_row;
820 int64_t rel_pc;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100821
Florian Mayerbee52132019-05-02 13:59:56 +0100822 bool operator==(const Row& other) const {
823 return std::tie(name_id, mapping_row, rel_pc) ==
824 std::tie(other.name_id, other.mapping_row, other.rel_pc);
825 }
826 };
827
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100828 uint32_t size() const { return static_cast<uint32_t>(names_.size()); }
829
Florian Mayerbee52132019-05-02 13:59:56 +0100830 int64_t Insert(const Row& row) {
831 names_.emplace_back(row.name_id);
832 mappings_.emplace_back(row.mapping_row);
833 rel_pcs_.emplace_back(row.rel_pc);
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100834 symbol_set_ids_.emplace_back(0);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100835 return static_cast<int64_t>(names_.size()) - 1;
836 }
837
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100838 void SetSymbolSetId(size_t row_idx, uint32_t symbol_set_id) {
839 PERFETTO_CHECK(row_idx < symbol_set_ids_.size());
840 symbol_set_ids_[row_idx] = symbol_set_id;
Ioannis Ilkose6727552019-08-14 15:10:59 +0100841 }
842
Florian Mayer438b5ab2019-05-02 11:18:06 +0100843 const std::deque<StringId>& names() const { return names_; }
844 const std::deque<int64_t>& mappings() const { return mappings_; }
845 const std::deque<int64_t>& rel_pcs() const { return rel_pcs_; }
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100846 const std::deque<uint32_t>& symbol_set_ids() const {
847 return symbol_set_ids_;
848 }
Florian Mayer438b5ab2019-05-02 11:18:06 +0100849
850 private:
851 std::deque<StringId> names_;
852 std::deque<int64_t> mappings_;
853 std::deque<int64_t> rel_pcs_;
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100854 std::deque<uint32_t> symbol_set_ids_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100855 };
856
Oystein Eftevaag5419c582019-08-21 13:58:49 -0700857 class StackProfileCallsites {
Florian Mayer438b5ab2019-05-02 11:18:06 +0100858 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100859 struct Row {
860 int64_t depth;
861 int64_t parent_id;
862 int64_t frame_row;
863
864 bool operator==(const Row& other) const {
865 return std::tie(depth, parent_id, frame_row) ==
866 std::tie(other.depth, other.parent_id, other.frame_row);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100867 }
Florian Mayerbee52132019-05-02 13:59:56 +0100868 };
869
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100870 uint32_t size() const { return static_cast<uint32_t>(frame_ids_.size()); }
871
Florian Mayerbee52132019-05-02 13:59:56 +0100872 int64_t Insert(const Row& row) {
873 frame_depths_.emplace_back(row.depth);
874 parent_callsite_ids_.emplace_back(row.parent_id);
875 frame_ids_.emplace_back(row.frame_row);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100876 return static_cast<int64_t>(frame_depths_.size()) - 1;
877 }
878
879 const std::deque<int64_t>& frame_depths() const { return frame_depths_; }
880 const std::deque<int64_t>& parent_callsite_ids() const {
881 return parent_callsite_ids_;
882 }
883 const std::deque<int64_t>& frame_ids() const { return frame_ids_; }
884
885 private:
886 std::deque<int64_t> frame_depths_;
887 std::deque<int64_t> parent_callsite_ids_;
888 std::deque<int64_t> frame_ids_;
889 };
890
Oystein Eftevaag5419c582019-08-21 13:58:49 -0700891 class StackProfileMappings {
Florian Mayer438b5ab2019-05-02 11:18:06 +0100892 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100893 struct Row {
894 StringId build_id;
Florian Mayer12655732019-07-02 15:08:26 +0100895 int64_t exact_offset;
896 int64_t start_offset;
Florian Mayerbee52132019-05-02 13:59:56 +0100897 int64_t start;
898 int64_t end;
899 int64_t load_bias;
900 StringId name_id;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100901
Florian Mayerbee52132019-05-02 13:59:56 +0100902 bool operator==(const Row& other) const {
Florian Mayer12655732019-07-02 15:08:26 +0100903 return std::tie(build_id, exact_offset, start_offset, start, end,
904 load_bias, name_id) ==
905 std::tie(other.build_id, other.exact_offset, other.start_offset,
906 other.start, other.end, other.load_bias, other.name_id);
Florian Mayerbee52132019-05-02 13:59:56 +0100907 }
908 };
909
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100910 uint32_t size() const { return static_cast<uint32_t>(names_.size()); }
911
Florian Mayerbee52132019-05-02 13:59:56 +0100912 int64_t Insert(const Row& row) {
913 build_ids_.emplace_back(row.build_id);
Florian Mayer12655732019-07-02 15:08:26 +0100914 exact_offsets_.emplace_back(row.exact_offset);
915 start_offsets_.emplace_back(row.start_offset);
Florian Mayerbee52132019-05-02 13:59:56 +0100916 starts_.emplace_back(row.start);
917 ends_.emplace_back(row.end);
918 load_biases_.emplace_back(row.load_bias);
919 names_.emplace_back(row.name_id);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100920 return static_cast<int64_t>(build_ids_.size()) - 1;
921 }
922
923 const std::deque<StringId>& build_ids() const { return build_ids_; }
Florian Mayer12655732019-07-02 15:08:26 +0100924 const std::deque<int64_t>& exact_offsets() const { return exact_offsets_; }
925 const std::deque<int64_t>& start_offsets() const { return start_offsets_; }
Florian Mayer438b5ab2019-05-02 11:18:06 +0100926 const std::deque<int64_t>& starts() const { return starts_; }
927 const std::deque<int64_t>& ends() const { return ends_; }
928 const std::deque<int64_t>& load_biases() const { return load_biases_; }
929 const std::deque<StringId>& names() const { return names_; }
930
931 private:
932 std::deque<StringId> build_ids_;
Florian Mayer12655732019-07-02 15:08:26 +0100933 std::deque<int64_t> exact_offsets_;
934 std::deque<int64_t> start_offsets_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100935 std::deque<int64_t> starts_;
936 std::deque<int64_t> ends_;
937 std::deque<int64_t> load_biases_;
938 std::deque<StringId> names_;
939 };
940
941 class HeapProfileAllocations {
942 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100943 struct Row {
944 int64_t timestamp;
Florian Mayerdf1968c2019-05-13 16:39:35 +0100945 UniquePid upid;
Florian Mayerbee52132019-05-02 13:59:56 +0100946 int64_t callsite_id;
947 int64_t count;
948 int64_t size;
949 };
950
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100951 uint32_t size() const { return static_cast<uint32_t>(timestamps_.size()); }
952
Florian Mayerbee52132019-05-02 13:59:56 +0100953 void Insert(const Row& row) {
954 timestamps_.emplace_back(row.timestamp);
Florian Mayerdf1968c2019-05-13 16:39:35 +0100955 upids_.emplace_back(row.upid);
Florian Mayerbee52132019-05-02 13:59:56 +0100956 callsite_ids_.emplace_back(row.callsite_id);
957 counts_.emplace_back(row.count);
958 sizes_.emplace_back(row.size);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100959 }
960
961 const std::deque<int64_t>& timestamps() const { return timestamps_; }
Florian Mayerdf1968c2019-05-13 16:39:35 +0100962 const std::deque<UniquePid>& upids() const { return upids_; }
Florian Mayer438b5ab2019-05-02 11:18:06 +0100963 const std::deque<int64_t>& callsite_ids() const { return callsite_ids_; }
964 const std::deque<int64_t>& counts() const { return counts_; }
965 const std::deque<int64_t>& sizes() const { return sizes_; }
966
967 private:
968 std::deque<int64_t> timestamps_;
Florian Mayerdf1968c2019-05-13 16:39:35 +0100969 std::deque<UniquePid> upids_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100970 std::deque<int64_t> callsite_ids_;
971 std::deque<int64_t> counts_;
972 std::deque<int64_t> sizes_;
973 };
974
Oystein Eftevaag7f64c102019-08-29 10:27:31 -0700975 class CpuProfileStackSamples {
976 public:
977 struct Row {
978 int64_t timestamp;
979 int64_t callsite_id;
980 UniqueTid utid;
981 };
982
983 uint32_t size() const { return static_cast<uint32_t>(timestamps_.size()); }
984
985 void Insert(const Row& row) {
986 timestamps_.emplace_back(row.timestamp);
987 callsite_ids_.emplace_back(row.callsite_id);
988 utids_.emplace_back(row.utid);
989 }
990
991 const std::deque<int64_t>& timestamps() const { return timestamps_; }
992 const std::deque<int64_t>& callsite_ids() const { return callsite_ids_; }
993 const std::deque<UniqueTid>& utids() const { return utids_; }
994
995 private:
996 std::deque<int64_t> timestamps_;
997 std::deque<int64_t> callsite_ids_;
998 std::deque<UniqueTid> utids_;
999 };
1000
Primiano Tuccib75dcee2018-08-08 12:21:36 +01001001 UniqueTid AddEmptyThread(uint32_t tid) {
1002 unique_threads_.emplace_back(tid);
Isabelle Taylora0a22972018-08-03 12:06:12 +01001003 return static_cast<UniqueTid>(unique_threads_.size() - 1);
1004 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +01001005
Primiano Tuccib75dcee2018-08-08 12:21:36 +01001006 UniquePid AddEmptyProcess(uint32_t pid) {
1007 unique_processes_.emplace_back(pid);
Isabelle Taylora0a22972018-08-03 12:06:12 +01001008 return static_cast<UniquePid>(unique_processes_.size() - 1);
1009 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +01001010
Isabelle Taylora0a22972018-08-03 12:06:12 +01001011 // Return an unqiue identifier for the contents of each string.
1012 // The string is copied internally and can be destroyed after this called.
Isabelle Taylor15314ea2018-09-19 11:35:19 +01001013 // Virtual for testing.
Lalit Maganti5c454312019-04-08 12:11:17 +01001014 virtual StringId InternString(base::StringView str) {
1015 return string_pool_.InternString(str);
1016 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +01001017
Isabelle Taylora0a22972018-08-03 12:06:12 +01001018 Process* GetMutableProcess(UniquePid upid) {
Lalit Maganti676658b2018-11-20 18:24:31 +00001019 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +01001020 return &unique_processes_[upid];
1021 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +01001022
Isabelle Taylora0a22972018-08-03 12:06:12 +01001023 Thread* GetMutableThread(UniqueTid utid) {
Florian Mayera1aaec22018-09-19 17:02:26 +01001024 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +01001025 return &unique_threads_[utid];
1026 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +01001027
Primiano Tucci0e38a142019-01-07 20:51:09 +00001028 // Example usage: SetStats(stats::android_log_num_failed, 42);
1029 void SetStats(size_t key, int64_t value) {
1030 PERFETTO_DCHECK(key < stats::kNumKeys);
1031 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
1032 stats_[key].value = value;
1033 }
1034
1035 // Example usage: IncrementStats(stats::android_log_num_failed, -1);
1036 void IncrementStats(size_t key, int64_t increment = 1) {
1037 PERFETTO_DCHECK(key < stats::kNumKeys);
1038 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
1039 stats_[key].value += increment;
1040 }
1041
Florian Mayer438b5ab2019-05-02 11:18:06 +01001042 // Example usage: IncrementIndexedStats(stats::cpu_failure, 1);
1043 void IncrementIndexedStats(size_t key, int index, int64_t increment = 1) {
1044 PERFETTO_DCHECK(key < stats::kNumKeys);
1045 PERFETTO_DCHECK(stats::kTypes[key] == stats::kIndexed);
1046 stats_[key].indexed_values[index] += increment;
1047 }
1048
Primiano Tucci0e38a142019-01-07 20:51:09 +00001049 // Example usage: SetIndexedStats(stats::cpu_failure, 1, 42);
1050 void SetIndexedStats(size_t key, int index, int64_t value) {
1051 PERFETTO_DCHECK(key < stats::kNumKeys);
1052 PERFETTO_DCHECK(stats::kTypes[key] == stats::kIndexed);
1053 stats_[key].indexed_values[index] = value;
1054 }
1055
Mikhail Khokhlove466c002019-05-23 13:33:33 +01001056 // Example usage:
1057 // SetMetadata(metadata::benchmark_name,
1058 // Variadic::String(storage->InternString("foo"));
Ryan Savitski51413ad2019-07-09 14:25:21 +01001059 // Returns the RowId of the new entry.
Mikhail Khokhlovb1fe42a2019-05-23 13:58:05 +01001060 // Virtual for testing.
Ryan Savitski51413ad2019-07-09 14:25:21 +01001061 virtual RowId SetMetadata(metadata::KeyIDs key, Variadic value) {
1062 return metadata_.SetScalarMetadata(key, value);
Mikhail Khokhlove466c002019-05-23 13:33:33 +01001063 }
1064
1065 // Example usage:
1066 // AppendMetadata(metadata::benchmark_story_tags,
1067 // Variadic::String(storage->InternString("bar"));
Ryan Savitski51413ad2019-07-09 14:25:21 +01001068 // Returns the RowId of the new entry.
Mikhail Khokhlovb1fe42a2019-05-23 13:58:05 +01001069 // Virtual for testing.
Ryan Savitski51413ad2019-07-09 14:25:21 +01001070 virtual RowId AppendMetadata(metadata::KeyIDs key, Variadic value) {
1071 return metadata_.AppendMetadata(key, value);
Mikhail Khokhlove466c002019-05-23 13:33:33 +01001072 }
1073
Eric Seckler77b52782019-05-02 15:18:57 +01001074 class ScopedStatsTracer {
1075 public:
1076 ScopedStatsTracer(TraceStorage* storage, size_t key)
1077 : storage_(storage), key_(key), start_ns_(base::GetWallTimeNs()) {}
1078
1079 ~ScopedStatsTracer() {
1080 if (!storage_)
1081 return;
1082 auto delta_ns = base::GetWallTimeNs() - start_ns_;
1083 storage_->IncrementStats(key_, delta_ns.count());
1084 }
1085
1086 ScopedStatsTracer(ScopedStatsTracer&& other) noexcept { MoveImpl(&other); }
1087
1088 ScopedStatsTracer& operator=(ScopedStatsTracer&& other) {
1089 MoveImpl(&other);
1090 return *this;
1091 }
1092
1093 private:
1094 ScopedStatsTracer(const ScopedStatsTracer&) = delete;
1095 ScopedStatsTracer& operator=(const ScopedStatsTracer&) = delete;
1096
1097 void MoveImpl(ScopedStatsTracer* other) {
1098 storage_ = other->storage_;
1099 key_ = other->key_;
1100 start_ns_ = other->start_ns_;
1101 other->storage_ = nullptr;
1102 }
1103
1104 TraceStorage* storage_;
1105 size_t key_;
1106 base::TimeNanos start_ns_;
1107 };
1108
1109 ScopedStatsTracer TraceExecutionTimeIntoStats(size_t key) {
1110 return ScopedStatsTracer(this, key);
1111 }
1112
Lalit Maganticaed37e2018-06-01 03:03:08 +01001113 // Reading methods.
Eric Secklerc93823e2019-06-03 16:49:19 +01001114 // Virtual for testing.
1115 virtual NullTermStringView GetString(StringId id) const {
Lalit Maganti5c454312019-04-08 12:11:17 +01001116 return string_pool_.Get(id);
Isabelle Taylora0a22972018-08-03 12:06:12 +01001117 }
1118
Lalit Magantie9d40532018-06-29 13:15:06 +01001119 const Process& GetProcess(UniquePid upid) const {
Lalit Maganti676658b2018-11-20 18:24:31 +00001120 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylor47328cf2018-06-12 14:33:59 +01001121 return unique_processes_[upid];
1122 }
1123
Lalit Magantie9d40532018-06-29 13:15:06 +01001124 const Thread& GetThread(UniqueTid utid) const {
Lalit Maganti1f64cfa2018-09-18 13:20:02 +01001125 // Allow utid == 0 for idle thread retrieval.
Florian Mayera1aaec22018-09-19 17:02:26 +01001126 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylor68e42192018-06-19 16:19:31 +01001127 return unique_threads_[utid];
1128 }
1129
Lalit Maganti5ea9e932018-11-30 14:19:39 +00001130 static RowId CreateRowId(TableId table, uint32_t row) {
Lalit Maganti85ca4a82018-12-07 17:28:02 +00001131 return (static_cast<RowId>(table) << kRowIdTableShift) | row;
Lalit Maganti5ea9e932018-11-30 14:19:39 +00001132 }
1133
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +00001134 static std::pair<int8_t /*table*/, uint32_t /*row*/> ParseRowId(RowId rowid) {
1135 auto id = static_cast<uint64_t>(rowid);
1136 auto table_id = static_cast<uint8_t>(id >> kRowIdTableShift);
1137 auto row = static_cast<uint32_t>(id & ((1ull << kRowIdTableShift) - 1));
1138 return std::make_pair(table_id, row);
1139 }
1140
Lalit Magantiac68e9c2019-09-09 18:12:15 +01001141 const tables::TrackTable& track_table() const { return track_table_; }
1142 tables::TrackTable* mutable_track_table() { return &track_table_; }
Lalit Magantid11d3e02019-07-26 12:32:09 +05301143
Lalit Maganti4ea78d92019-09-20 20:20:41 +01001144 const tables::ChromeAsyncTrackTable& chrome_async_track_table() const {
1145 return chrome_async_track_table_;
1146 }
1147 tables::ChromeAsyncTrackTable* mutable_chrome_async_track_table() {
1148 return &chrome_async_track_table_;
1149 }
1150
1151 const tables::FuchsiaAsyncTrackTable& fuchsia_async_track_table() const {
1152 return fuchsia_async_track_table_;
1153 }
1154 tables::FuchsiaAsyncTrackTable* mutable_fuchsia_async_track_table() {
1155 return &fuchsia_async_track_table_;
1156 }
Eric Seckler5703ede2019-07-10 10:13:02 +01001157
Lalit Magantiff69c112018-09-24 12:07:47 +01001158 const Slices& slices() const { return slices_; }
Lalit Magantifde29042018-10-04 13:28:52 +01001159 Slices* mutable_slices() { return &slices_; }
1160
Primiano Tucci0d72a312018-08-07 14:42:45 +01001161 const NestableSlices& nestable_slices() const { return nestable_slices_; }
1162 NestableSlices* mutable_nestable_slices() { return &nestable_slices_; }
1163
Eric Secklerd3b89d52019-07-10 15:36:29 +01001164 const ThreadSlices& thread_slices() const { return thread_slices_; }
1165 ThreadSlices* mutable_thread_slices() { return &thread_slices_; }
1166
Eric Secklerc3430c62019-07-22 10:49:58 +01001167 const VirtualTrackSlices& virtual_track_slices() const {
1168 return virtual_track_slices_;
1169 }
1170 VirtualTrackSlices* mutable_virtual_track_slices() {
1171 return &virtual_track_slices_;
1172 }
1173
Lalit Maganti20539c22019-09-04 12:36:10 +01001174 const tables::GpuSliceTable& gpu_slice_table() const {
1175 return gpu_slice_table_;
1176 }
1177 tables::GpuSliceTable* mutable_gpu_slice_table() { return &gpu_slice_table_; }
Mikael Pessa7160ccc2019-07-25 11:19:26 -07001178
Lalit Maganti8320e6d2019-03-14 18:49:33 +00001179 const CounterDefinitions& counter_definitions() const {
1180 return counter_definitions_;
1181 }
1182 CounterDefinitions* mutable_counter_definitions() {
1183 return &counter_definitions_;
1184 }
1185
1186 const CounterValues& counter_values() const { return counter_values_; }
1187 CounterValues* mutable_counter_values() { return &counter_values_; }
Isabelle Taylor14674d42018-09-07 11:33:11 +01001188
Primiano Tucci5cb84f82018-10-31 21:46:36 -07001189 const SqlStats& sql_stats() const { return sql_stats_; }
1190 SqlStats* mutable_sql_stats() { return &sql_stats_; }
1191
Isabelle Taylorc8c11202018-11-05 11:36:22 +00001192 const Instants& instants() const { return instants_; }
1193 Instants* mutable_instants() { return &instants_; }
1194
Primiano Tucci2c761ef2019-01-07 20:20:46 +00001195 const AndroidLogs& android_logs() const { return android_log_; }
1196 AndroidLogs* mutable_android_log() { return &android_log_; }
1197
Primiano Tucci0e38a142019-01-07 20:51:09 +00001198 const StatsMap& stats() const { return stats_; }
Lalit Maganti05e8c132018-11-09 18:16:12 +00001199
Ryan Savitski51413ad2019-07-09 14:25:21 +01001200 const Metadata& metadata() const { return metadata_; }
Ryan Savitski0476ee92019-07-09 14:29:33 +01001201 Metadata* mutable_metadata() { return &metadata_; }
Mikhail Khokhlove466c002019-05-23 13:33:33 +01001202
Lalit Maganti6e9c55e2018-11-29 12:00:39 +00001203 const Args& args() const { return args_; }
1204 Args* mutable_args() { return &args_; }
1205
Lalit Maganti1d915a62019-01-07 12:10:42 +00001206 const RawEvents& raw_events() const { return raw_events_; }
1207 RawEvents* mutable_raw_events() { return &raw_events_; }
1208
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001209 const StackProfileMappings& stack_profile_mappings() const {
1210 return stack_profile_mappings_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001211 }
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001212 StackProfileMappings* mutable_stack_profile_mappings() {
1213 return &stack_profile_mappings_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001214 }
1215
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001216 const StackProfileFrames& stack_profile_frames() const {
1217 return stack_profile_frames_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001218 }
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001219 StackProfileFrames* mutable_stack_profile_frames() {
1220 return &stack_profile_frames_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001221 }
1222
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001223 const StackProfileCallsites& stack_profile_callsites() const {
1224 return stack_profile_callsites_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001225 }
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001226 StackProfileCallsites* mutable_stack_profile_callsites() {
1227 return &stack_profile_callsites_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001228 }
1229
1230 const HeapProfileAllocations& heap_profile_allocations() const {
1231 return heap_profile_allocations_;
1232 }
1233 HeapProfileAllocations* mutable_heap_profile_allocations() {
1234 return &heap_profile_allocations_;
1235 }
Oystein Eftevaag7f64c102019-08-29 10:27:31 -07001236 const CpuProfileStackSamples& cpu_profile_stack_samples() const {
1237 return cpu_profile_stack_samples_;
1238 }
1239 CpuProfileStackSamples* mutable_cpu_profile_stack_samples() {
1240 return &cpu_profile_stack_samples_;
1241 }
Florian Mayer438b5ab2019-05-02 11:18:06 +01001242
Ioannis Ilkose0b47f52019-09-18 11:14:57 +01001243 const tables::SymbolTable& symbol_table() const { return symbol_table_; }
1244
1245 tables::SymbolTable* mutable_symbol_table() { return &symbol_table_; }
1246
Lalit Maganti20539c22019-09-04 12:36:10 +01001247 const tables::GpuTrackTable& gpu_track_table() const {
1248 return gpu_track_table_;
1249 }
1250 tables::GpuTrackTable* mutable_gpu_track_table() { return &gpu_track_table_; }
Mikael Pessa7160ccc2019-07-25 11:19:26 -07001251
Lalit Maganti5c454312019-04-08 12:11:17 +01001252 const StringPool& string_pool() const { return string_pool_; }
Lalit Magantiacda68b2018-10-29 15:23:25 +00001253
Hector Dearman5145e502019-09-18 16:52:24 +01001254 // |unique_processes_| always contains at least 1 element because the 0th ID
Isabelle Taylore7003fb2018-07-17 11:39:01 +01001255 // is reserved to indicate an invalid process.
Lalit Maganti9c6395b2019-01-17 00:25:09 +00001256 size_t process_count() const { return unique_processes_.size(); }
Primiano Tucci0d72a312018-08-07 14:42:45 +01001257
Hector Dearman5145e502019-09-18 16:52:24 +01001258 // |unique_threads_| always contains at least 1 element because the 0th ID
Isabelle Taylore7003fb2018-07-17 11:39:01 +01001259 // is reserved to indicate an invalid thread.
Lalit Maganti9c6395b2019-01-17 00:25:09 +00001260 size_t thread_count() const { return unique_threads_.size(); }
Isabelle Taylore7003fb2018-07-17 11:39:01 +01001261
Hector Dearman12323362018-08-09 16:09:28 +01001262 // Number of interned strings in the pool. Includes the empty string w/ ID=0.
1263 size_t string_count() const { return string_pool_.size(); }
1264
Ioannis Ilkosb8b11102019-01-29 17:56:55 +00001265 // Start / end ts (in nanoseconds) across the parsed trace events.
1266 // Returns (0, 0) if the trace is empty.
1267 std::pair<int64_t, int64_t> GetTraceTimestampBoundsNs() const;
1268
Lalit Maganticaed37e2018-06-01 03:03:08 +01001269 private:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +00001270 static constexpr uint8_t kRowIdTableShift = 32;
Isabelle Taylora0a22972018-08-03 12:06:12 +01001271
Primiano Tucci2da5d2e2018-08-10 14:23:31 +01001272 using StringHash = uint64_t;
Lalit Maganticaed37e2018-06-01 03:03:08 +01001273
Lalit Maganti5c454312019-04-08 12:11:17 +01001274 TraceStorage(const TraceStorage&) = delete;
1275 TraceStorage& operator=(const TraceStorage&) = delete;
1276
Lalit Maganti20539c22019-09-04 12:36:10 +01001277 TraceStorage(TraceStorage&&) = delete;
1278 TraceStorage& operator=(TraceStorage&&) = delete;
1279
1280 // One entry for each unique string in the trace.
1281 StringPool string_pool_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +00001282
Lalit Maganti05e8c132018-11-09 18:16:12 +00001283 // Stats about parsing the trace.
Primiano Tucci0e38a142019-01-07 20:51:09 +00001284 StatsMap stats_{};
Lalit Maganti35622b72018-06-06 12:03:11 +01001285
Ryan Savitski51413ad2019-07-09 14:25:21 +01001286 // Extra data extracted from the trace. Includes:
1287 // * metadata from chrome and benchmarking infrastructure
1288 // * descriptions of android packages
1289 Metadata metadata_{};
Mikhail Khokhlove466c002019-05-23 13:33:33 +01001290
Lalit Magantid11d3e02019-07-26 12:32:09 +05301291 // Metadata for tracks.
Lalit Magantiac68e9c2019-09-09 18:12:15 +01001292 tables::TrackTable track_table_{&string_pool_, nullptr};
Lalit Maganti4ea78d92019-09-20 20:20:41 +01001293 tables::GpuTrackTable gpu_track_table_{&string_pool_, &track_table_};
1294 tables::FuchsiaAsyncTrackTable fuchsia_async_track_table_{&string_pool_,
1295 &track_table_};
1296 tables::ChromeScopedTrackTable chrome_scoped_track_table_{&string_pool_,
1297 &track_table_};
1298 tables::ChromeAsyncTrackTable chrome_async_track_table_{
1299 &string_pool_, &chrome_scoped_track_table_};
Eric Seckler5703ede2019-07-10 10:13:02 +01001300
Mikael Pessa803090c2019-08-23 16:03:34 -07001301 // Metadata for gpu tracks.
Mikael Pessa803090c2019-08-23 16:03:34 -07001302 GpuContexts gpu_contexts_;
1303
Lalit Maganticaed37e2018-06-01 03:03:08 +01001304 // One entry for each CPU in the trace.
Lalit Magantiff69c112018-09-24 12:07:47 +01001305 Slices slices_;
Lalit Maganticaed37e2018-06-01 03:03:08 +01001306
Lalit Maganti6e9c55e2018-11-29 12:00:39 +00001307 // Args for all other tables.
1308 Args args_;
1309
Isabelle Taylor47328cf2018-06-12 14:33:59 +01001310 // One entry for each UniquePid, with UniquePid as the index.
Ioannis Ilkos9c03cbd2019-03-12 18:30:43 +00001311 // Never hold on to pointers to Process, as vector resize will
1312 // invalidate them.
1313 std::vector<Process> unique_processes_;
Isabelle Taylor68e42192018-06-19 16:19:31 +01001314
Isabelle Taylor68e42192018-06-19 16:19:31 +01001315 // One entry for each UniqueTid, with UniqueTid as the index.
Isabelle Taylor3dd366c2018-06-22 16:21:41 +01001316 std::deque<Thread> unique_threads_;
Primiano Tucci0d72a312018-08-07 14:42:45 +01001317
1318 // Slices coming from userspace events (e.g. Chromium TRACE_EVENT macros).
1319 NestableSlices nestable_slices_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +01001320
Eric Secklerd3b89d52019-07-10 15:36:29 +01001321 // Additional attributes for threads slices (sub-type of NestableSlices).
1322 ThreadSlices thread_slices_;
1323
Eric Secklerc3430c62019-07-22 10:49:58 +01001324 // Additional attributes for virtual track slices (sub-type of
1325 // NestableSlices).
1326 VirtualTrackSlices virtual_track_slices_;
1327
Mikael Pessa803090c2019-08-23 16:03:34 -07001328 // Additional attributes for gpu track slices (sub-type of
1329 // NestableSlices).
Lalit Maganti20539c22019-09-04 12:36:10 +01001330 tables::GpuSliceTable gpu_slice_table_{&string_pool_, nullptr};
Mikael Pessa803090c2019-08-23 16:03:34 -07001331
Hector Dearman2442d612019-06-04 18:05:23 +01001332 // The type of counters in the trace. Can be thought of as the "metadata".
Lalit Maganti8320e6d2019-03-14 18:49:33 +00001333 CounterDefinitions counter_definitions_;
1334
1335 // The values from the Counter events from the trace. This includes CPU
1336 // frequency events as well systrace trace_marker counter events.
1337 CounterValues counter_values_;
Primiano Tucci5cb84f82018-10-31 21:46:36 -07001338
1339 SqlStats sql_stats_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +00001340
Isabelle Taylorc8c11202018-11-05 11:36:22 +00001341 // These are instantaneous events in the trace. They have no duration
1342 // and do not have a value that make sense to track over time.
1343 // e.g. signal events
1344 Instants instants_;
Lalit Maganti1d915a62019-01-07 12:10:42 +00001345
1346 // Raw events are every ftrace event in the trace. The raw event includes
1347 // the timestamp and the pid. The args for the raw event will be in the
1348 // args table. This table can be used to generate a text version of the
1349 // trace.
1350 RawEvents raw_events_;
Primiano Tucci2c761ef2019-01-07 20:20:46 +00001351 AndroidLogs android_log_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001352
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001353 StackProfileMappings stack_profile_mappings_;
1354 StackProfileFrames stack_profile_frames_;
1355 StackProfileCallsites stack_profile_callsites_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001356 HeapProfileAllocations heap_profile_allocations_;
Oystein Eftevaag7f64c102019-08-29 10:27:31 -07001357 CpuProfileStackSamples cpu_profile_stack_samples_;
Ioannis Ilkose0b47f52019-09-18 11:14:57 +01001358
1359 // Symbol tables (mappings from frames to symbol names)
1360 tables::SymbolTable symbol_table_{&string_pool_, nullptr};
Lalit Maganticaed37e2018-06-01 03:03:08 +01001361};
1362
1363} // namespace trace_processor
1364} // namespace perfetto
1365
Florian Mayerbee52132019-05-02 13:59:56 +01001366namespace std {
1367
1368template <>
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001369struct hash<
1370 ::perfetto::trace_processor::TraceStorage::StackProfileFrames::Row> {
Florian Mayerbee52132019-05-02 13:59:56 +01001371 using argument_type =
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001372 ::perfetto::trace_processor::TraceStorage::StackProfileFrames::Row;
Florian Mayerbee52132019-05-02 13:59:56 +01001373 using result_type = size_t;
1374
1375 result_type operator()(const argument_type& r) const {
1376 return std::hash<::perfetto::trace_processor::StringId>{}(r.name_id) ^
1377 std::hash<int64_t>{}(r.mapping_row) ^ std::hash<int64_t>{}(r.rel_pc);
1378 }
1379};
1380
1381template <>
1382struct hash<
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001383 ::perfetto::trace_processor::TraceStorage::StackProfileCallsites::Row> {
Florian Mayerbee52132019-05-02 13:59:56 +01001384 using argument_type =
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001385 ::perfetto::trace_processor::TraceStorage::StackProfileCallsites::Row;
Florian Mayerbee52132019-05-02 13:59:56 +01001386 using result_type = size_t;
1387
1388 result_type operator()(const argument_type& r) const {
1389 return std::hash<int64_t>{}(r.depth) ^ std::hash<int64_t>{}(r.parent_id) ^
1390 std::hash<int64_t>{}(r.frame_row);
1391 }
1392};
1393
1394template <>
1395struct hash<
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001396 ::perfetto::trace_processor::TraceStorage::StackProfileMappings::Row> {
Florian Mayerbee52132019-05-02 13:59:56 +01001397 using argument_type =
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001398 ::perfetto::trace_processor::TraceStorage::StackProfileMappings::Row;
Florian Mayerbee52132019-05-02 13:59:56 +01001399 using result_type = size_t;
1400
1401 result_type operator()(const argument_type& r) const {
1402 return std::hash<::perfetto::trace_processor::StringId>{}(r.build_id) ^
Florian Mayer12655732019-07-02 15:08:26 +01001403 std::hash<int64_t>{}(r.exact_offset) ^
1404 std::hash<int64_t>{}(r.start_offset) ^
1405 std::hash<int64_t>{}(r.start) ^ std::hash<int64_t>{}(r.end) ^
1406 std::hash<int64_t>{}(r.load_bias) ^
Florian Mayerbee52132019-05-02 13:59:56 +01001407 std::hash<::perfetto::trace_processor::StringId>{}(r.name_id);
1408 }
1409};
1410
1411} // namespace std
1412
Lalit Maganticaed37e2018-06-01 03:03:08 +01001413#endif // SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_