blob: 6b17caebeefd2f1f6dcc5978b631a2d868669522 [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 Maganti53bdbb22019-09-25 11:11:18 +010069 kTrack = 7,
Lalit Maganti5ea9e932018-11-30 14:19:39 +000070};
71
72// The top 8 bits are set to the TableId and the bottom 32 to the row of the
73// table.
Lalit Maganti85ca4a82018-12-07 17:28:02 +000074using RowId = int64_t;
Lalit Maganti5ea9e932018-11-30 14:19:39 +000075static const RowId kInvalidRowId = 0;
76
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +000077using ArgSetId = uint32_t;
78static const ArgSetId kInvalidArgSetId = 0;
79
Eric Seckler5703ede2019-07-10 10:13:02 +010080using TrackId = uint32_t;
81
Lalit Maganti21b21632019-09-28 16:50:23 +010082enum class RefType {
Primiano Tucci5403e4f2018-11-27 10:07:03 +000083 kRefNoRef = 0,
84 kRefUtid = 1,
85 kRefCpuId = 2,
86 kRefIrq = 3,
87 kRefSoftIrq = 4,
88 kRefUpid = 5,
Sidath Senanayake1f5f93a2019-06-06 22:24:15 +010089 kRefGpuId = 6,
Eric Seckler5703ede2019-07-10 10:13:02 +010090 kRefTrack = 7,
Primiano Tucci5403e4f2018-11-27 10:07:03 +000091 kRefMax
Isabelle Taylora97c5f52018-10-23 17:36:12 +010092};
Isabelle Taylor14674d42018-09-07 11:33:11 +010093
Eric Seckler972225e2019-04-18 11:07:12 +010094const std::vector<const char*>& GetRefTypeStringMap();
95
Lalit Maganticaed37e2018-06-01 03:03:08 +010096// Stores a data inside a trace file in a columnar form. This makes it efficient
97// to read or search across a single field of the trace (e.g. all the thread
98// names for a given CPU).
99class TraceStorage {
100 public:
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100101 TraceStorage();
Isabelle Taylora0a22972018-08-03 12:06:12 +0100102
103 virtual ~TraceStorage();
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100104
Isabelle Taylora0a22972018-08-03 12:06:12 +0100105 // Information about a unique process seen in a trace.
106 struct Process {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100107 explicit Process(uint32_t p) : pid(p) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000108 int64_t start_ns = 0;
Lalit Maganti637589a2019-07-04 17:25:29 +0100109 int64_t end_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100110 StringId name_id = 0;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100111 uint32_t pid = 0;
Lalit Maganti369b0572019-07-11 15:35:09 +0100112 base::Optional<UniquePid> parent_upid;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100113 };
114
115 // Information about a unique thread seen in a trace.
116 struct Thread {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100117 explicit Thread(uint32_t t) : tid(t) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000118 int64_t start_ns = 0;
Lalit Magantib5bd2332019-06-06 14:20:47 +0100119 int64_t end_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100120 StringId name_id = 0;
Lalit Maganti770886a2018-11-16 17:40:21 +0000121 base::Optional<UniquePid> upid;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100122 uint32_t tid = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100123 };
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100124
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000125 // Generic key value storage which can be referenced by other tables.
126 class Args {
127 public:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000128 struct Arg {
129 StringId flat_key = 0;
130 StringId key = 0;
131 Variadic value = Variadic::Integer(0);
132
133 // This is only used by the arg tracker and so is not part of the hash.
134 RowId row_id = 0;
135 };
136
137 struct ArgHasher {
138 uint64_t operator()(const Arg& arg) const noexcept {
Lalit Maganti1f464742019-02-28 13:49:31 +0000139 base::Hash hash;
140 hash.Update(arg.key);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000141 // We don't hash arg.flat_key because it's a subsequence of arg.key.
142 switch (arg.value.type) {
143 case Variadic::Type::kInt:
Lalit Maganti1f464742019-02-28 13:49:31 +0000144 hash.Update(arg.value.int_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000145 break;
Eric Secklerc93823e2019-06-03 16:49:19 +0100146 case Variadic::Type::kUint:
147 hash.Update(arg.value.uint_value);
148 break;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000149 case Variadic::Type::kString:
Lalit Maganti1f464742019-02-28 13:49:31 +0000150 hash.Update(arg.value.string_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000151 break;
152 case Variadic::Type::kReal:
Lalit Maganti1f464742019-02-28 13:49:31 +0000153 hash.Update(arg.value.real_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000154 break;
Eric Secklerc93823e2019-06-03 16:49:19 +0100155 case Variadic::Type::kPointer:
156 hash.Update(arg.value.pointer_value);
157 break;
158 case Variadic::Type::kBool:
159 hash.Update(arg.value.bool_value);
160 break;
161 case Variadic::Type::kJson:
162 hash.Update(arg.value.json_value);
163 break;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000164 }
Lalit Maganti1f464742019-02-28 13:49:31 +0000165 return hash.digest();
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000166 }
167 };
168
169 const std::deque<ArgSetId>& set_ids() const { return set_ids_; }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000170 const std::deque<StringId>& flat_keys() const { return flat_keys_; }
171 const std::deque<StringId>& keys() const { return keys_; }
Lalit Maganti1d915a62019-01-07 12:10:42 +0000172 const std::deque<Variadic>& arg_values() const { return arg_values_; }
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000173 uint32_t args_count() const {
174 return static_cast<uint32_t>(set_ids_.size());
Lalit Maganti79472be2018-12-04 13:41:27 +0000175 }
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000176
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000177 ArgSetId AddArgSet(const std::vector<Arg>& args,
178 uint32_t begin,
179 uint32_t end) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000180 base::Hash hash;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000181 for (uint32_t i = begin; i < end; i++) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000182 hash.Update(ArgHasher()(args[i]));
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000183 }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000184
Lalit Maganti1f464742019-02-28 13:49:31 +0000185 ArgSetHash digest = hash.digest();
186 auto it = arg_row_for_hash_.find(digest);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000187 if (it != arg_row_for_hash_.end()) {
188 return set_ids_[it->second];
189 }
190
191 // The +1 ensures that nothing has an id == kInvalidArgSetId == 0.
192 ArgSetId id = static_cast<uint32_t>(arg_row_for_hash_.size()) + 1;
Lalit Maganti1f464742019-02-28 13:49:31 +0000193 arg_row_for_hash_.emplace(digest, args_count());
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000194 for (uint32_t i = begin; i < end; i++) {
195 const auto& arg = args[i];
196 set_ids_.emplace_back(id);
197 flat_keys_.emplace_back(arg.flat_key);
198 keys_.emplace_back(arg.key);
199 arg_values_.emplace_back(arg.value);
200 }
201 return id;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000202 }
203
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000204 private:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000205 using ArgSetHash = uint64_t;
206
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000207 std::deque<ArgSetId> set_ids_;
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000208 std::deque<StringId> flat_keys_;
209 std::deque<StringId> keys_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000210 std::deque<Variadic> arg_values_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000211
212 std::unordered_map<ArgSetHash, uint32_t> arg_row_for_hash_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000213 };
214
Lalit Magantid11d3e02019-07-26 12:32:09 +0530215 class Tracks {
216 public:
217 inline uint32_t AddTrack(StringId name) {
218 names_.emplace_back(name);
219 return track_count() - 1;
220 }
221
222 uint32_t track_count() const {
223 return static_cast<uint32_t>(names_.size());
224 }
225
226 const std::deque<StringId>& names() const { return names_; }
227
228 private:
229 std::deque<StringId> names_;
230 };
231
Mikael Pessa803090c2019-08-23 16:03:34 -0700232 class GpuContexts {
233 public:
234 inline void AddGpuContext(uint64_t context_id,
235 UniquePid upid,
236 uint32_t priority) {
237 context_ids_.emplace_back(context_id);
238 upids_.emplace_back(upid);
239 priorities_.emplace_back(priority);
240 }
241
242 uint32_t gpu_context_count() const {
243 return static_cast<uint32_t>(context_ids_.size());
244 }
245
246 const std::deque<uint64_t>& context_ids() const { return context_ids_; }
247 const std::deque<UniquePid>& upids() const { return upids_; }
248 const std::deque<uint32_t>& priorities() const { return priorities_; }
249
250 private:
251 std::deque<uint64_t> context_ids_;
252 std::deque<UniquePid> upids_;
253 std::deque<uint32_t> priorities_;
254 };
255
Lalit Magantiff69c112018-09-24 12:07:47 +0100256 class Slices {
Lalit Maganti35622b72018-06-06 12:03:11 +0100257 public:
Lalit Magantifde29042018-10-04 13:28:52 +0100258 inline size_t AddSlice(uint32_t cpu,
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000259 int64_t start_ns,
260 int64_t duration_ns,
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000261 UniqueTid utid,
262 ftrace_utils::TaskState end_state,
263 int32_t priority) {
Lalit Magantiff69c112018-09-24 12:07:47 +0100264 cpus_.emplace_back(cpu);
Lalit Maganti35622b72018-06-06 12:03:11 +0100265 start_ns_.emplace_back(start_ns);
266 durations_.emplace_back(duration_ns);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100267 utids_.emplace_back(utid);
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000268 end_states_.emplace_back(end_state);
269 priorities_.emplace_back(priority);
Lalit Maganti58638932019-01-31 10:48:26 +0000270
271 if (utid >= rows_for_utids_.size())
272 rows_for_utids_.resize(utid + 1);
273 rows_for_utids_[utid].emplace_back(slice_count() - 1);
Lalit Magantifde29042018-10-04 13:28:52 +0100274 return slice_count() - 1;
275 }
276
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000277 void set_duration(size_t index, int64_t duration_ns) {
Lalit Magantifde29042018-10-04 13:28:52 +0100278 durations_[index] = duration_ns;
Lalit Maganti35622b72018-06-06 12:03:11 +0100279 }
280
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000281 void set_end_state(size_t index, ftrace_utils::TaskState end_state) {
282 end_states_[index] = end_state;
283 }
284
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100285 size_t slice_count() const { return start_ns_.size(); }
Lalit Maganti35622b72018-06-06 12:03:11 +0100286
Lalit Magantiff69c112018-09-24 12:07:47 +0100287 const std::deque<uint32_t>& cpus() const { return cpus_; }
288
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000289 const std::deque<int64_t>& start_ns() const { return start_ns_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100290
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000291 const std::deque<int64_t>& durations() const { return durations_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100292
Isabelle Taylor68e42192018-06-19 16:19:31 +0100293 const std::deque<UniqueTid>& utids() const { return utids_; }
294
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000295 const std::deque<ftrace_utils::TaskState>& end_state() const {
296 return end_states_;
297 }
298
299 const std::deque<int32_t>& priorities() const { return priorities_; }
300
Lalit Maganti58638932019-01-31 10:48:26 +0000301 const std::deque<std::vector<uint32_t>>& rows_for_utids() const {
Lalit Magantif0f09c32019-01-18 17:29:31 +0000302 return rows_for_utids_;
303 }
304
Lalit Maganti35622b72018-06-06 12:03:11 +0100305 private:
Hector Dearman947f12a2018-09-11 16:50:36 +0100306 // Each deque below has the same number of entries (the number of slices
Lalit Maganti35622b72018-06-06 12:03:11 +0100307 // in the trace for the CPU).
Lalit Magantiff69c112018-09-24 12:07:47 +0100308 std::deque<uint32_t> cpus_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000309 std::deque<int64_t> start_ns_;
310 std::deque<int64_t> durations_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100311 std::deque<UniqueTid> utids_;
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000312 std::deque<ftrace_utils::TaskState> end_states_;
313 std::deque<int32_t> priorities_;
Lalit Maganti58638932019-01-31 10:48:26 +0000314
315 // One row per utid.
316 std::deque<std::vector<uint32_t>> rows_for_utids_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100317 };
Isabelle Taylor68e42192018-06-19 16:19:31 +0100318
Primiano Tucci0d72a312018-08-07 14:42:45 +0100319 class NestableSlices {
320 public:
Eric Seckler70cc4422019-05-28 16:00:23 +0100321 inline uint32_t AddSlice(int64_t start_ns,
322 int64_t duration_ns,
Lalit Maganti21b21632019-09-28 16:50:23 +0100323 TrackId track_id,
Eric Seckler70cc4422019-05-28 16:00:23 +0100324 int64_t ref,
325 RefType type,
Lalit Maganti81a02cd2019-07-12 17:05:11 +0100326 StringId category,
Eric Seckler70cc4422019-05-28 16:00:23 +0100327 StringId name,
328 uint8_t depth,
329 int64_t stack_id,
330 int64_t parent_stack_id) {
Primiano Tucci0d72a312018-08-07 14:42:45 +0100331 start_ns_.emplace_back(start_ns);
332 durations_.emplace_back(duration_ns);
Lalit Maganti21b21632019-09-28 16:50:23 +0100333 track_id_.emplace_back(track_id);
Eric Seckler972225e2019-04-18 11:07:12 +0100334 refs_.emplace_back(ref);
335 types_.emplace_back(type);
Lalit Maganti81a02cd2019-07-12 17:05:11 +0100336 categories_.emplace_back(category);
Primiano Tucci0d72a312018-08-07 14:42:45 +0100337 names_.emplace_back(name);
338 depths_.emplace_back(depth);
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100339 stack_ids_.emplace_back(stack_id);
340 parent_stack_ids_.emplace_back(parent_stack_id);
Eric Seckler70cc4422019-05-28 16:00:23 +0100341 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000342 return slice_count() - 1;
343 }
344
Eric Seckler70cc4422019-05-28 16:00:23 +0100345 void set_duration(uint32_t index, int64_t duration_ns) {
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000346 durations_[index] = duration_ns;
347 }
348
Eric Seckler70cc4422019-05-28 16:00:23 +0100349 void set_stack_id(uint32_t index, int64_t stack_id) {
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000350 stack_ids_[index] = stack_id;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100351 }
352
Eric Seckler70cc4422019-05-28 16:00:23 +0100353 void set_arg_set_id(uint32_t index, ArgSetId id) {
354 arg_set_ids_[index] = id;
355 }
356
357 uint32_t slice_count() const {
358 return static_cast<uint32_t>(start_ns_.size());
359 }
360
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000361 const std::deque<int64_t>& start_ns() const { return start_ns_; }
362 const std::deque<int64_t>& durations() const { return durations_; }
Lalit Maganti21b21632019-09-28 16:50:23 +0100363 const std::deque<TrackId>& track_id() const { return track_id_; }
Eric Seckler972225e2019-04-18 11:07:12 +0100364 const std::deque<int64_t>& refs() const { return refs_; }
365 const std::deque<RefType>& types() const { return types_; }
Lalit Maganti81a02cd2019-07-12 17:05:11 +0100366 const std::deque<StringId>& categories() const { return categories_; }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100367 const std::deque<StringId>& names() const { return names_; }
368 const std::deque<uint8_t>& depths() const { return depths_; }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000369 const std::deque<int64_t>& stack_ids() const { return stack_ids_; }
370 const std::deque<int64_t>& parent_stack_ids() const {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100371 return parent_stack_ids_;
372 }
Eric Seckler70cc4422019-05-28 16:00:23 +0100373 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100374
375 private:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000376 std::deque<int64_t> start_ns_;
377 std::deque<int64_t> durations_;
Lalit Maganti21b21632019-09-28 16:50:23 +0100378 std::deque<TrackId> track_id_;
Eric Seckler972225e2019-04-18 11:07:12 +0100379 std::deque<int64_t> refs_;
380 std::deque<RefType> types_;
Lalit Maganti81a02cd2019-07-12 17:05:11 +0100381 std::deque<StringId> categories_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100382 std::deque<StringId> names_;
383 std::deque<uint8_t> depths_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000384 std::deque<int64_t> stack_ids_;
385 std::deque<int64_t> parent_stack_ids_;
Eric Seckler70cc4422019-05-28 16:00:23 +0100386 std::deque<ArgSetId> arg_set_ids_;
Lalit Maganti35622b72018-06-06 12:03:11 +0100387 };
388
Eric Secklerd3b89d52019-07-10 15:36:29 +0100389 class ThreadSlices {
390 public:
391 inline uint32_t AddThreadSlice(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;
402 }
403
Eric Secklerc3430c62019-07-22 10:49:58 +0100404 uint32_t slice_count() const {
405 return static_cast<uint32_t>(slice_ids_.size());
Eric Secklerd3b89d52019-07-10 15:36:29 +0100406 }
407
Eric Secklerc3430c62019-07-22 10:49:58 +0100408 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
422 base::Optional<uint32_t> FindRowForSliceId(uint32_t slice_id) const {
423 auto it =
424 std::lower_bound(slice_ids().begin(), slice_ids().end(), slice_id);
425 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;
429 }
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) {
Eric Secklerc3430c62019-07-22 10:49:58 +0100434 uint32_t row = *FindRowForSliceId(slice_id);
435 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 Secklerc3430c62019-07-22 10:49:58 +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
450 class VirtualTrackSlices {
451 public:
452 inline uint32_t AddVirtualTrackSlice(uint32_t slice_id,
453 int64_t thread_timestamp_ns,
454 int64_t thread_duration_ns,
455 int64_t thread_instruction_count,
456 int64_t thread_instruction_delta) {
457 slice_ids_.emplace_back(slice_id);
458 thread_timestamp_ns_.emplace_back(thread_timestamp_ns);
459 thread_duration_ns_.emplace_back(thread_duration_ns);
460 thread_instruction_counts_.emplace_back(thread_instruction_count);
461 thread_instruction_deltas_.emplace_back(thread_instruction_delta);
462 return slice_count() - 1;
Eric Secklerd3b89d52019-07-10 15:36:29 +0100463 }
464
465 uint32_t slice_count() const {
466 return static_cast<uint32_t>(slice_ids_.size());
467 }
468
469 const std::deque<uint32_t>& slice_ids() const { return slice_ids_; }
470 const std::deque<int64_t>& thread_timestamp_ns() const {
471 return thread_timestamp_ns_;
472 }
473 const std::deque<int64_t>& thread_duration_ns() const {
474 return thread_duration_ns_;
475 }
476 const std::deque<int64_t>& thread_instruction_counts() const {
477 return thread_instruction_counts_;
478 }
479 const std::deque<int64_t>& thread_instruction_deltas() const {
480 return thread_instruction_deltas_;
481 }
482
Mikhail Khokhlov7db04912019-07-18 16:11:11 +0100483 base::Optional<uint32_t> FindRowForSliceId(uint32_t slice_id) const {
Eric Secklerd3b89d52019-07-10 15:36:29 +0100484 auto it =
485 std::lower_bound(slice_ids().begin(), slice_ids().end(), slice_id);
Mikhail Khokhlov7db04912019-07-18 16:11:11 +0100486 if (it != slice_ids().end() && *it == slice_id) {
487 return static_cast<uint32_t>(std::distance(slice_ids().begin(), it));
488 }
489 return base::nullopt;
Eric Secklerd3b89d52019-07-10 15:36:29 +0100490 }
491
Eric Seckler54f30a32019-07-19 15:10:29 +0100492 void UpdateThreadDeltasForSliceId(uint32_t slice_id,
493 int64_t end_thread_timestamp_ns,
494 int64_t end_thread_instruction_count) {
Mikhail Khokhlov7db04912019-07-18 16:11:11 +0100495 uint32_t row = *FindRowForSliceId(slice_id);
Eric Secklerd3b89d52019-07-10 15:36:29 +0100496 int64_t begin_ns = thread_timestamp_ns_[row];
497 thread_duration_ns_[row] = end_thread_timestamp_ns - begin_ns;
Eric Seckler54f30a32019-07-19 15:10:29 +0100498 int64_t begin_ticount = thread_instruction_counts_[row];
499 thread_instruction_deltas_[row] =
500 end_thread_instruction_count - begin_ticount;
Eric Secklerd3b89d52019-07-10 15:36:29 +0100501 }
502
503 private:
504 std::deque<uint32_t> slice_ids_;
505 std::deque<int64_t> thread_timestamp_ns_;
506 std::deque<int64_t> thread_duration_ns_;
507 std::deque<int64_t> thread_instruction_counts_;
508 std::deque<int64_t> thread_instruction_deltas_;
509 };
510
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000511 class CounterDefinitions {
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100512 public:
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000513 using Id = uint32_t;
Lalit Maganti521d97b2019-04-29 13:47:03 +0100514 static constexpr Id kInvalidId = std::numeric_limits<Id>::max();
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000515
516 inline Id AddCounterDefinition(StringId name_id,
517 int64_t ref,
Pascal Muetschard91d07892019-08-26 13:55:06 -0700518 RefType type,
Pascal Muetschardceb5c822019-08-26 14:39:15 -0700519 StringId desc_id = 0,
520 StringId unit_id = 0) {
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000521 base::Hash hash;
522 hash.Update(name_id);
523 hash.Update(ref);
524 hash.Update(type);
525
526 // TODO(lalitm): this is a perf bottleneck and likely we can do something
527 // quite a bit better here.
528 uint64_t digest = hash.digest();
529 auto it = hash_to_row_idx_.find(digest);
530 if (it != hash_to_row_idx_.end())
531 return it->second;
532
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100533 name_ids_.emplace_back(name_id);
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100534 refs_.emplace_back(ref);
535 types_.emplace_back(type);
Pascal Muetschard91d07892019-08-26 13:55:06 -0700536 desc_ids_.emplace_back(desc_id);
Pascal Muetschardceb5c822019-08-26 14:39:15 -0700537 unit_ids_.emplace_back(unit_id);
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000538 hash_to_row_idx_.emplace(digest, size() - 1);
539 return size() - 1;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100540 }
Lalit Magantifde29042018-10-04 13:28:52 +0100541
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000542 uint32_t size() const { return static_cast<uint32_t>(name_ids_.size()); }
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100543
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100544 const std::deque<StringId>& name_ids() const { return name_ids_; }
545
Pascal Muetschard91d07892019-08-26 13:55:06 -0700546 const std::deque<StringId>& desc_ids() const { return desc_ids_; }
547
Pascal Muetschardceb5c822019-08-26 14:39:15 -0700548 const std::deque<StringId>& unit_ids() const { return unit_ids_; }
549
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100550 const std::deque<int64_t>& refs() const { return refs_; }
551
552 const std::deque<RefType>& types() const { return types_; }
553
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000554 private:
555 std::deque<StringId> name_ids_;
556 std::deque<int64_t> refs_;
557 std::deque<RefType> types_;
Pascal Muetschard91d07892019-08-26 13:55:06 -0700558 std::deque<StringId> desc_ids_;
Pascal Muetschardceb5c822019-08-26 14:39:15 -0700559 std::deque<StringId> unit_ids_;
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000560
561 std::unordered_map<uint64_t, uint32_t> hash_to_row_idx_;
562 };
563
564 class CounterValues {
565 public:
566 inline uint32_t AddCounterValue(CounterDefinitions::Id counter_id,
567 int64_t timestamp,
568 double value) {
569 counter_ids_.emplace_back(counter_id);
570 timestamps_.emplace_back(timestamp);
571 values_.emplace_back(value);
572 arg_set_ids_.emplace_back(kInvalidArgSetId);
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100573
Lalit Maganti521d97b2019-04-29 13:47:03 +0100574 if (counter_id != CounterDefinitions::kInvalidId) {
575 if (counter_id >= rows_for_counter_id_.size()) {
576 rows_for_counter_id_.resize(counter_id + 1);
577 }
578 rows_for_counter_id_[counter_id].emplace_back(size() - 1);
579 }
580 return size() - 1;
581 }
582
583 void set_counter_id(uint32_t index, CounterDefinitions::Id counter_id) {
584 PERFETTO_DCHECK(counter_ids_[index] == CounterDefinitions::kInvalidId);
585
586 counter_ids_[index] = counter_id;
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100587 if (counter_id >= rows_for_counter_id_.size()) {
588 rows_for_counter_id_.resize(counter_id + 1);
589 }
Lalit Maganti521d97b2019-04-29 13:47:03 +0100590
591 auto* new_rows = &rows_for_counter_id_[counter_id];
592 new_rows->insert(
593 std::upper_bound(new_rows->begin(), new_rows->end(), index), index);
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000594 }
595
596 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
597
598 uint32_t size() const { return static_cast<uint32_t>(counter_ids_.size()); }
599
600 const std::deque<CounterDefinitions::Id>& counter_ids() const {
601 return counter_ids_;
602 }
603
604 const std::deque<int64_t>& timestamps() const { return timestamps_; }
605
606 const std::deque<double>& values() const { return values_; }
607
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000608 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
609
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100610 const std::deque<std::vector<uint32_t>>& rows_for_counter_id() const {
611 return rows_for_counter_id_;
612 }
613
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100614 private:
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000615 std::deque<CounterDefinitions::Id> counter_ids_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000616 std::deque<int64_t> timestamps_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100617 std::deque<double> values_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000618 std::deque<ArgSetId> arg_set_ids_;
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100619
620 // Indexed by counter_id value and contains the row numbers corresponding to
621 // it.
622 std::deque<std::vector<uint32_t>> rows_for_counter_id_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100623 };
624
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700625 class SqlStats {
626 public:
627 static constexpr size_t kMaxLogEntries = 100;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100628 uint32_t RecordQueryBegin(const std::string& query,
629 int64_t time_queued,
630 int64_t time_started);
631 void RecordQueryFirstNext(uint32_t row, int64_t time_first_next);
632 void RecordQueryEnd(uint32_t row, int64_t time_end);
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700633 size_t size() const { return queries_.size(); }
634 const std::deque<std::string>& queries() const { return queries_; }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000635 const std::deque<int64_t>& times_queued() const { return times_queued_; }
636 const std::deque<int64_t>& times_started() const { return times_started_; }
Lalit Magantiaac2f652019-04-30 12:16:21 +0100637 const std::deque<int64_t>& times_first_next() const {
638 return times_first_next_;
639 }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000640 const std::deque<int64_t>& times_ended() const { return times_ended_; }
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700641
642 private:
Lalit Magantiaac2f652019-04-30 12:16:21 +0100643 uint32_t popped_queries_ = 0;
644
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700645 std::deque<std::string> queries_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000646 std::deque<int64_t> times_queued_;
647 std::deque<int64_t> times_started_;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100648 std::deque<int64_t> times_first_next_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000649 std::deque<int64_t> times_ended_;
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700650 };
651
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000652 class Instants {
653 public:
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000654 inline uint32_t AddInstantEvent(int64_t timestamp,
655 StringId name_id,
656 double value,
657 int64_t ref,
658 RefType type) {
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000659 timestamps_.emplace_back(timestamp);
660 name_ids_.emplace_back(name_id);
661 values_.emplace_back(value);
662 refs_.emplace_back(ref);
663 types_.emplace_back(type);
Lalit Maganti1c21d172019-02-07 10:48:24 +0000664 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000665 return static_cast<uint32_t>(instant_count() - 1);
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000666 }
667
Lalit Maganti521d97b2019-04-29 13:47:03 +0100668 void set_ref(uint32_t row, int64_t ref) { refs_[row] = ref; }
669
Lalit Maganti1c21d172019-02-07 10:48:24 +0000670 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
671
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000672 size_t instant_count() const { return timestamps_.size(); }
673
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000674 const std::deque<int64_t>& timestamps() const { return timestamps_; }
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000675
676 const std::deque<StringId>& name_ids() const { return name_ids_; }
677
678 const std::deque<double>& values() const { return values_; }
679
680 const std::deque<int64_t>& refs() const { return refs_; }
681
682 const std::deque<RefType>& types() const { return types_; }
683
Lalit Maganti1c21d172019-02-07 10:48:24 +0000684 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
685
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000686 private:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000687 std::deque<int64_t> timestamps_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000688 std::deque<StringId> name_ids_;
689 std::deque<double> values_;
690 std::deque<int64_t> refs_;
691 std::deque<RefType> types_;
Lalit Maganti1c21d172019-02-07 10:48:24 +0000692 std::deque<ArgSetId> arg_set_ids_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000693 };
694
Lalit Maganti1d915a62019-01-07 12:10:42 +0000695 class RawEvents {
696 public:
697 inline RowId AddRawEvent(int64_t timestamp,
698 StringId name_id,
Lalit Magantie87cc812019-01-10 15:20:06 +0000699 uint32_t cpu,
Lalit Maganti1d915a62019-01-07 12:10:42 +0000700 UniqueTid utid) {
701 timestamps_.emplace_back(timestamp);
702 name_ids_.emplace_back(name_id);
Lalit Magantie87cc812019-01-10 15:20:06 +0000703 cpus_.emplace_back(cpu);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000704 utids_.emplace_back(utid);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000705 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000706 return CreateRowId(TableId::kRawEvents,
707 static_cast<uint32_t>(raw_event_count() - 1));
708 }
709
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000710 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
711
Lalit Maganti1d915a62019-01-07 12:10:42 +0000712 size_t raw_event_count() const { return timestamps_.size(); }
713
714 const std::deque<int64_t>& timestamps() const { return timestamps_; }
715
716 const std::deque<StringId>& name_ids() const { return name_ids_; }
717
Lalit Magantie87cc812019-01-10 15:20:06 +0000718 const std::deque<uint32_t>& cpus() const { return cpus_; }
719
Lalit Maganti1d915a62019-01-07 12:10:42 +0000720 const std::deque<UniqueTid>& utids() const { return utids_; }
721
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000722 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
723
Lalit Maganti1d915a62019-01-07 12:10:42 +0000724 private:
725 std::deque<int64_t> timestamps_;
726 std::deque<StringId> name_ids_;
Lalit Magantie87cc812019-01-10 15:20:06 +0000727 std::deque<uint32_t> cpus_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000728 std::deque<UniqueTid> utids_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000729 std::deque<ArgSetId> arg_set_ids_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000730 };
731
Primiano Tucci2c761ef2019-01-07 20:20:46 +0000732 class AndroidLogs {
733 public:
734 inline size_t AddLogEvent(int64_t timestamp,
735 UniqueTid utid,
736 uint8_t prio,
737 StringId tag_id,
738 StringId msg_id) {
739 timestamps_.emplace_back(timestamp);
740 utids_.emplace_back(utid);
741 prios_.emplace_back(prio);
742 tag_ids_.emplace_back(tag_id);
743 msg_ids_.emplace_back(msg_id);
744 return size() - 1;
745 }
746
747 size_t size() const { return timestamps_.size(); }
748
749 const std::deque<int64_t>& timestamps() const { return timestamps_; }
750 const std::deque<UniqueTid>& utids() const { return utids_; }
751 const std::deque<uint8_t>& prios() const { return prios_; }
752 const std::deque<StringId>& tag_ids() const { return tag_ids_; }
753 const std::deque<StringId>& msg_ids() const { return msg_ids_; }
754
755 private:
756 std::deque<int64_t> timestamps_;
757 std::deque<UniqueTid> utids_;
758 std::deque<uint8_t> prios_;
759 std::deque<StringId> tag_ids_;
760 std::deque<StringId> msg_ids_;
761 };
762
Primiano Tucci0e38a142019-01-07 20:51:09 +0000763 struct Stats {
764 using IndexMap = std::map<int, int64_t>;
765 int64_t value = 0;
766 IndexMap indexed_values;
767 };
768 using StatsMap = std::array<Stats, stats::kNumKeys>;
769
Ryan Savitski51413ad2019-07-09 14:25:21 +0100770 class Metadata {
771 public:
772 const std::deque<metadata::KeyIDs>& keys() const { return keys_; }
773 const std::deque<Variadic>& values() const { return values_; }
774
775 RowId SetScalarMetadata(metadata::KeyIDs key, Variadic value) {
776 PERFETTO_DCHECK(key < metadata::kNumKeys);
777 PERFETTO_DCHECK(metadata::kKeyTypes[key] == metadata::kSingle);
778 PERFETTO_DCHECK(value.type == metadata::kValueTypes[key]);
779
780 // Already set - on release builds, overwrite the previous value.
781 auto it = scalar_indices.find(key);
782 if (it != scalar_indices.end()) {
783 PERFETTO_DFATAL("Setting a scalar metadata entry more than once.");
784 uint32_t index = static_cast<uint32_t>(it->second);
785 values_[index] = value;
786 return TraceStorage::CreateRowId(kMetadataTable, index);
787 }
788 // First time setting this key.
789 keys_.push_back(key);
790 values_.push_back(value);
791 uint32_t index = static_cast<uint32_t>(keys_.size() - 1);
792 scalar_indices[key] = index;
793 return TraceStorage::CreateRowId(kMetadataTable, index);
794 }
795
796 RowId AppendMetadata(metadata::KeyIDs key, Variadic value) {
797 PERFETTO_DCHECK(key < metadata::kNumKeys);
798 PERFETTO_DCHECK(metadata::kKeyTypes[key] == metadata::kMulti);
799 PERFETTO_DCHECK(value.type == metadata::kValueTypes[key]);
800
801 keys_.push_back(key);
802 values_.push_back(value);
803 uint32_t index = static_cast<uint32_t>(keys_.size() - 1);
804 return TraceStorage::CreateRowId(kMetadataTable, index);
805 }
806
Ryan Savitski0476ee92019-07-09 14:29:33 +0100807 void OverwriteMetadata(uint32_t index, Variadic value) {
808 PERFETTO_DCHECK(index < values_.size());
809 values_[index] = value;
810 }
811
Ryan Savitski51413ad2019-07-09 14:25:21 +0100812 private:
813 std::deque<metadata::KeyIDs> keys_;
814 std::deque<Variadic> values_;
815 // Extraneous state to track locations of entries that should have at most
816 // one row. Used only to maintain uniqueness during insertions.
817 std::map<metadata::KeyIDs, uint32_t> scalar_indices;
818 };
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100819
Oystein Eftevaag5419c582019-08-21 13:58:49 -0700820 class StackProfileFrames {
Florian Mayer438b5ab2019-05-02 11:18:06 +0100821 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100822 struct Row {
823 StringId name_id;
824 int64_t mapping_row;
825 int64_t rel_pc;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100826
Florian Mayerbee52132019-05-02 13:59:56 +0100827 bool operator==(const Row& other) const {
828 return std::tie(name_id, mapping_row, rel_pc) ==
829 std::tie(other.name_id, other.mapping_row, other.rel_pc);
830 }
831 };
832
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100833 uint32_t size() const { return static_cast<uint32_t>(names_.size()); }
834
Florian Mayerbee52132019-05-02 13:59:56 +0100835 int64_t Insert(const Row& row) {
836 names_.emplace_back(row.name_id);
837 mappings_.emplace_back(row.mapping_row);
838 rel_pcs_.emplace_back(row.rel_pc);
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100839 symbol_set_ids_.emplace_back(0);
Florian Mayera480cd62019-09-24 10:36:56 +0100840 size_t row_number = names_.size() - 1;
841 index_.emplace(std::make_pair(row.mapping_row, row.rel_pc), row_number);
842 return static_cast<int64_t>(row_number);
843 }
844
845 ssize_t FindFrameRow(size_t mapping_row, uint64_t rel_pc) const {
846 auto it = index_.find(std::make_pair(mapping_row, rel_pc));
847 if (it == index_.end())
848 return -1;
849 return static_cast<ssize_t>(it->second);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100850 }
851
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100852 void SetSymbolSetId(size_t row_idx, uint32_t symbol_set_id) {
853 PERFETTO_CHECK(row_idx < symbol_set_ids_.size());
854 symbol_set_ids_[row_idx] = symbol_set_id;
Ioannis Ilkose6727552019-08-14 15:10:59 +0100855 }
856
Florian Mayer438b5ab2019-05-02 11:18:06 +0100857 const std::deque<StringId>& names() const { return names_; }
858 const std::deque<int64_t>& mappings() const { return mappings_; }
859 const std::deque<int64_t>& rel_pcs() const { return rel_pcs_; }
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100860 const std::deque<uint32_t>& symbol_set_ids() const {
861 return symbol_set_ids_;
862 }
Florian Mayer438b5ab2019-05-02 11:18:06 +0100863
864 private:
865 std::deque<StringId> names_;
866 std::deque<int64_t> mappings_;
867 std::deque<int64_t> rel_pcs_;
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100868 std::deque<uint32_t> symbol_set_ids_;
Florian Mayera480cd62019-09-24 10:36:56 +0100869
870 std::map<std::pair<size_t /* mapping row */, uint64_t /* rel_pc */>, size_t>
871 index_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100872 };
873
Oystein Eftevaag5419c582019-08-21 13:58:49 -0700874 class StackProfileCallsites {
Florian Mayer438b5ab2019-05-02 11:18:06 +0100875 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100876 struct Row {
877 int64_t depth;
878 int64_t parent_id;
879 int64_t frame_row;
880
881 bool operator==(const Row& other) const {
882 return std::tie(depth, parent_id, frame_row) ==
883 std::tie(other.depth, other.parent_id, other.frame_row);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100884 }
Florian Mayerbee52132019-05-02 13:59:56 +0100885 };
886
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100887 uint32_t size() const { return static_cast<uint32_t>(frame_ids_.size()); }
888
Florian Mayerbee52132019-05-02 13:59:56 +0100889 int64_t Insert(const Row& row) {
890 frame_depths_.emplace_back(row.depth);
891 parent_callsite_ids_.emplace_back(row.parent_id);
892 frame_ids_.emplace_back(row.frame_row);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100893 return static_cast<int64_t>(frame_depths_.size()) - 1;
894 }
895
896 const std::deque<int64_t>& frame_depths() const { return frame_depths_; }
897 const std::deque<int64_t>& parent_callsite_ids() const {
898 return parent_callsite_ids_;
899 }
900 const std::deque<int64_t>& frame_ids() const { return frame_ids_; }
901
902 private:
903 std::deque<int64_t> frame_depths_;
904 std::deque<int64_t> parent_callsite_ids_;
905 std::deque<int64_t> frame_ids_;
906 };
907
Oystein Eftevaag5419c582019-08-21 13:58:49 -0700908 class StackProfileMappings {
Florian Mayer438b5ab2019-05-02 11:18:06 +0100909 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100910 struct Row {
911 StringId build_id;
Florian Mayer12655732019-07-02 15:08:26 +0100912 int64_t exact_offset;
913 int64_t start_offset;
Florian Mayerbee52132019-05-02 13:59:56 +0100914 int64_t start;
915 int64_t end;
916 int64_t load_bias;
917 StringId name_id;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100918
Florian Mayerbee52132019-05-02 13:59:56 +0100919 bool operator==(const Row& other) const {
Florian Mayer12655732019-07-02 15:08:26 +0100920 return std::tie(build_id, exact_offset, start_offset, start, end,
921 load_bias, name_id) ==
922 std::tie(other.build_id, other.exact_offset, other.start_offset,
923 other.start, other.end, other.load_bias, other.name_id);
Florian Mayerbee52132019-05-02 13:59:56 +0100924 }
925 };
926
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100927 uint32_t size() const { return static_cast<uint32_t>(names_.size()); }
928
Florian Mayerbee52132019-05-02 13:59:56 +0100929 int64_t Insert(const Row& row) {
930 build_ids_.emplace_back(row.build_id);
Florian Mayer12655732019-07-02 15:08:26 +0100931 exact_offsets_.emplace_back(row.exact_offset);
932 start_offsets_.emplace_back(row.start_offset);
Florian Mayerbee52132019-05-02 13:59:56 +0100933 starts_.emplace_back(row.start);
934 ends_.emplace_back(row.end);
935 load_biases_.emplace_back(row.load_bias);
936 names_.emplace_back(row.name_id);
Florian Mayera480cd62019-09-24 10:36:56 +0100937
938 size_t row_number = build_ids_.size() - 1;
939 index_.emplace(std::make_pair(row.name_id, row.build_id), row_number);
940 return static_cast<int64_t>(row_number);
941 }
942
943 ssize_t FindMappingRow(StringId name, StringId build_id) const {
944 auto it = index_.find(std::make_pair(name, build_id));
945 if (it == index_.end())
946 return -1;
947 return static_cast<ssize_t>(it->second);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100948 }
949
950 const std::deque<StringId>& build_ids() const { return build_ids_; }
Florian Mayer12655732019-07-02 15:08:26 +0100951 const std::deque<int64_t>& exact_offsets() const { return exact_offsets_; }
952 const std::deque<int64_t>& start_offsets() const { return start_offsets_; }
Florian Mayer438b5ab2019-05-02 11:18:06 +0100953 const std::deque<int64_t>& starts() const { return starts_; }
954 const std::deque<int64_t>& ends() const { return ends_; }
955 const std::deque<int64_t>& load_biases() const { return load_biases_; }
956 const std::deque<StringId>& names() const { return names_; }
957
958 private:
959 std::deque<StringId> build_ids_;
Florian Mayer12655732019-07-02 15:08:26 +0100960 std::deque<int64_t> exact_offsets_;
961 std::deque<int64_t> start_offsets_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100962 std::deque<int64_t> starts_;
963 std::deque<int64_t> ends_;
964 std::deque<int64_t> load_biases_;
965 std::deque<StringId> names_;
Florian Mayera480cd62019-09-24 10:36:56 +0100966
967 std::map<std::pair<StringId /* name */, StringId /* build id */>, size_t>
968 index_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100969 };
970
971 class HeapProfileAllocations {
972 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100973 struct Row {
974 int64_t timestamp;
Florian Mayerdf1968c2019-05-13 16:39:35 +0100975 UniquePid upid;
Florian Mayerbee52132019-05-02 13:59:56 +0100976 int64_t callsite_id;
977 int64_t count;
978 int64_t size;
979 };
980
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100981 uint32_t size() const { return static_cast<uint32_t>(timestamps_.size()); }
982
Florian Mayerbee52132019-05-02 13:59:56 +0100983 void Insert(const Row& row) {
984 timestamps_.emplace_back(row.timestamp);
Florian Mayerdf1968c2019-05-13 16:39:35 +0100985 upids_.emplace_back(row.upid);
Florian Mayerbee52132019-05-02 13:59:56 +0100986 callsite_ids_.emplace_back(row.callsite_id);
987 counts_.emplace_back(row.count);
988 sizes_.emplace_back(row.size);
Florian Mayer438b5ab2019-05-02 11:18:06 +0100989 }
990
991 const std::deque<int64_t>& timestamps() const { return timestamps_; }
Florian Mayerdf1968c2019-05-13 16:39:35 +0100992 const std::deque<UniquePid>& upids() const { return upids_; }
Florian Mayer438b5ab2019-05-02 11:18:06 +0100993 const std::deque<int64_t>& callsite_ids() const { return callsite_ids_; }
994 const std::deque<int64_t>& counts() const { return counts_; }
995 const std::deque<int64_t>& sizes() const { return sizes_; }
996
997 private:
998 std::deque<int64_t> timestamps_;
Florian Mayerdf1968c2019-05-13 16:39:35 +0100999 std::deque<UniquePid> upids_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001000 std::deque<int64_t> callsite_ids_;
1001 std::deque<int64_t> counts_;
1002 std::deque<int64_t> sizes_;
1003 };
1004
Oystein Eftevaag7f64c102019-08-29 10:27:31 -07001005 class CpuProfileStackSamples {
1006 public:
1007 struct Row {
1008 int64_t timestamp;
1009 int64_t callsite_id;
1010 UniqueTid utid;
1011 };
1012
1013 uint32_t size() const { return static_cast<uint32_t>(timestamps_.size()); }
1014
1015 void Insert(const Row& row) {
1016 timestamps_.emplace_back(row.timestamp);
1017 callsite_ids_.emplace_back(row.callsite_id);
1018 utids_.emplace_back(row.utid);
1019 }
1020
1021 const std::deque<int64_t>& timestamps() const { return timestamps_; }
1022 const std::deque<int64_t>& callsite_ids() const { return callsite_ids_; }
1023 const std::deque<UniqueTid>& utids() const { return utids_; }
1024
1025 private:
1026 std::deque<int64_t> timestamps_;
1027 std::deque<int64_t> callsite_ids_;
1028 std::deque<UniqueTid> utids_;
1029 };
1030
Primiano Tuccib75dcee2018-08-08 12:21:36 +01001031 UniqueTid AddEmptyThread(uint32_t tid) {
1032 unique_threads_.emplace_back(tid);
Isabelle Taylora0a22972018-08-03 12:06:12 +01001033 return static_cast<UniqueTid>(unique_threads_.size() - 1);
1034 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +01001035
Primiano Tuccib75dcee2018-08-08 12:21:36 +01001036 UniquePid AddEmptyProcess(uint32_t pid) {
1037 unique_processes_.emplace_back(pid);
Isabelle Taylora0a22972018-08-03 12:06:12 +01001038 return static_cast<UniquePid>(unique_processes_.size() - 1);
1039 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +01001040
Isabelle Taylora0a22972018-08-03 12:06:12 +01001041 // Return an unqiue identifier for the contents of each string.
1042 // The string is copied internally and can be destroyed after this called.
Isabelle Taylor15314ea2018-09-19 11:35:19 +01001043 // Virtual for testing.
Lalit Maganti5c454312019-04-08 12:11:17 +01001044 virtual StringId InternString(base::StringView str) {
1045 return string_pool_.InternString(str);
1046 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +01001047
Isabelle Taylora0a22972018-08-03 12:06:12 +01001048 Process* GetMutableProcess(UniquePid upid) {
Lalit Maganti676658b2018-11-20 18:24:31 +00001049 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +01001050 return &unique_processes_[upid];
1051 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +01001052
Isabelle Taylora0a22972018-08-03 12:06:12 +01001053 Thread* GetMutableThread(UniqueTid utid) {
Florian Mayera1aaec22018-09-19 17:02:26 +01001054 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +01001055 return &unique_threads_[utid];
1056 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +01001057
Primiano Tucci0e38a142019-01-07 20:51:09 +00001058 // Example usage: SetStats(stats::android_log_num_failed, 42);
1059 void SetStats(size_t key, int64_t value) {
1060 PERFETTO_DCHECK(key < stats::kNumKeys);
1061 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
1062 stats_[key].value = value;
1063 }
1064
1065 // Example usage: IncrementStats(stats::android_log_num_failed, -1);
1066 void IncrementStats(size_t key, int64_t increment = 1) {
1067 PERFETTO_DCHECK(key < stats::kNumKeys);
1068 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
1069 stats_[key].value += increment;
1070 }
1071
Florian Mayer438b5ab2019-05-02 11:18:06 +01001072 // Example usage: IncrementIndexedStats(stats::cpu_failure, 1);
1073 void IncrementIndexedStats(size_t key, int index, int64_t increment = 1) {
1074 PERFETTO_DCHECK(key < stats::kNumKeys);
1075 PERFETTO_DCHECK(stats::kTypes[key] == stats::kIndexed);
1076 stats_[key].indexed_values[index] += increment;
1077 }
1078
Primiano Tucci0e38a142019-01-07 20:51:09 +00001079 // Example usage: SetIndexedStats(stats::cpu_failure, 1, 42);
1080 void SetIndexedStats(size_t key, int index, int64_t value) {
1081 PERFETTO_DCHECK(key < stats::kNumKeys);
1082 PERFETTO_DCHECK(stats::kTypes[key] == stats::kIndexed);
1083 stats_[key].indexed_values[index] = value;
1084 }
1085
Mikhail Khokhlove466c002019-05-23 13:33:33 +01001086 // Example usage:
1087 // SetMetadata(metadata::benchmark_name,
1088 // Variadic::String(storage->InternString("foo"));
Ryan Savitski51413ad2019-07-09 14:25:21 +01001089 // Returns the RowId of the new entry.
Mikhail Khokhlovb1fe42a2019-05-23 13:58:05 +01001090 // Virtual for testing.
Ryan Savitski51413ad2019-07-09 14:25:21 +01001091 virtual RowId SetMetadata(metadata::KeyIDs key, Variadic value) {
1092 return metadata_.SetScalarMetadata(key, value);
Mikhail Khokhlove466c002019-05-23 13:33:33 +01001093 }
1094
1095 // Example usage:
1096 // AppendMetadata(metadata::benchmark_story_tags,
1097 // Variadic::String(storage->InternString("bar"));
Ryan Savitski51413ad2019-07-09 14:25:21 +01001098 // Returns the RowId of the new entry.
Mikhail Khokhlovb1fe42a2019-05-23 13:58:05 +01001099 // Virtual for testing.
Ryan Savitski51413ad2019-07-09 14:25:21 +01001100 virtual RowId AppendMetadata(metadata::KeyIDs key, Variadic value) {
1101 return metadata_.AppendMetadata(key, value);
Mikhail Khokhlove466c002019-05-23 13:33:33 +01001102 }
1103
Eric Seckler77b52782019-05-02 15:18:57 +01001104 class ScopedStatsTracer {
1105 public:
1106 ScopedStatsTracer(TraceStorage* storage, size_t key)
1107 : storage_(storage), key_(key), start_ns_(base::GetWallTimeNs()) {}
1108
1109 ~ScopedStatsTracer() {
1110 if (!storage_)
1111 return;
1112 auto delta_ns = base::GetWallTimeNs() - start_ns_;
1113 storage_->IncrementStats(key_, delta_ns.count());
1114 }
1115
1116 ScopedStatsTracer(ScopedStatsTracer&& other) noexcept { MoveImpl(&other); }
1117
1118 ScopedStatsTracer& operator=(ScopedStatsTracer&& other) {
1119 MoveImpl(&other);
1120 return *this;
1121 }
1122
1123 private:
1124 ScopedStatsTracer(const ScopedStatsTracer&) = delete;
1125 ScopedStatsTracer& operator=(const ScopedStatsTracer&) = delete;
1126
1127 void MoveImpl(ScopedStatsTracer* other) {
1128 storage_ = other->storage_;
1129 key_ = other->key_;
1130 start_ns_ = other->start_ns_;
1131 other->storage_ = nullptr;
1132 }
1133
1134 TraceStorage* storage_;
1135 size_t key_;
1136 base::TimeNanos start_ns_;
1137 };
1138
1139 ScopedStatsTracer TraceExecutionTimeIntoStats(size_t key) {
1140 return ScopedStatsTracer(this, key);
1141 }
1142
Lalit Maganticaed37e2018-06-01 03:03:08 +01001143 // Reading methods.
Eric Secklerc93823e2019-06-03 16:49:19 +01001144 // Virtual for testing.
1145 virtual NullTermStringView GetString(StringId id) const {
Lalit Maganti5c454312019-04-08 12:11:17 +01001146 return string_pool_.Get(id);
Isabelle Taylora0a22972018-08-03 12:06:12 +01001147 }
1148
Lalit Magantie9d40532018-06-29 13:15:06 +01001149 const Process& GetProcess(UniquePid upid) const {
Lalit Maganti676658b2018-11-20 18:24:31 +00001150 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylor47328cf2018-06-12 14:33:59 +01001151 return unique_processes_[upid];
1152 }
1153
Eric Secklerb32cacf2019-09-27 16:51:19 +01001154 // Virtual for testing.
1155 virtual const Thread& GetThread(UniqueTid utid) const {
Lalit Maganti1f64cfa2018-09-18 13:20:02 +01001156 // Allow utid == 0 for idle thread retrieval.
Florian Mayera1aaec22018-09-19 17:02:26 +01001157 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylor68e42192018-06-19 16:19:31 +01001158 return unique_threads_[utid];
1159 }
1160
Lalit Maganti5ea9e932018-11-30 14:19:39 +00001161 static RowId CreateRowId(TableId table, uint32_t row) {
Lalit Maganti85ca4a82018-12-07 17:28:02 +00001162 return (static_cast<RowId>(table) << kRowIdTableShift) | row;
Lalit Maganti5ea9e932018-11-30 14:19:39 +00001163 }
1164
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +00001165 static std::pair<int8_t /*table*/, uint32_t /*row*/> ParseRowId(RowId rowid) {
1166 auto id = static_cast<uint64_t>(rowid);
1167 auto table_id = static_cast<uint8_t>(id >> kRowIdTableShift);
1168 auto row = static_cast<uint32_t>(id & ((1ull << kRowIdTableShift) - 1));
1169 return std::make_pair(table_id, row);
1170 }
1171
Lalit Magantiac68e9c2019-09-09 18:12:15 +01001172 const tables::TrackTable& track_table() const { return track_table_; }
1173 tables::TrackTable* mutable_track_table() { return &track_table_; }
Lalit Magantid11d3e02019-07-26 12:32:09 +05301174
Lalit Maganti53bdbb22019-09-25 11:11:18 +01001175 const tables::ProcessTrackTable& process_track_table() const {
1176 return process_track_table_;
Lalit Maganti4ea78d92019-09-20 20:20:41 +01001177 }
Lalit Maganti53bdbb22019-09-25 11:11:18 +01001178 tables::ProcessTrackTable* mutable_process_track_table() {
1179 return &process_track_table_;
Lalit Maganti4ea78d92019-09-20 20:20:41 +01001180 }
Eric Seckler5703ede2019-07-10 10:13:02 +01001181
Lalit Magantifedc15b2019-09-26 18:37:52 +01001182 const tables::ThreadTrackTable& thread_track_table() const {
1183 return thread_track_table_;
1184 }
1185 tables::ThreadTrackTable* mutable_thread_track_table() {
1186 return &thread_track_table_;
1187 }
1188
Lalit Magantiff69c112018-09-24 12:07:47 +01001189 const Slices& slices() const { return slices_; }
Lalit Magantifde29042018-10-04 13:28:52 +01001190 Slices* mutable_slices() { return &slices_; }
1191
Primiano Tucci0d72a312018-08-07 14:42:45 +01001192 const NestableSlices& nestable_slices() const { return nestable_slices_; }
1193 NestableSlices* mutable_nestable_slices() { return &nestable_slices_; }
1194
Eric Secklerd3b89d52019-07-10 15:36:29 +01001195 const ThreadSlices& thread_slices() const { return thread_slices_; }
1196 ThreadSlices* mutable_thread_slices() { return &thread_slices_; }
1197
Eric Secklerc3430c62019-07-22 10:49:58 +01001198 const VirtualTrackSlices& virtual_track_slices() const {
1199 return virtual_track_slices_;
1200 }
1201 VirtualTrackSlices* mutable_virtual_track_slices() {
1202 return &virtual_track_slices_;
1203 }
1204
Lalit Maganti20539c22019-09-04 12:36:10 +01001205 const tables::GpuSliceTable& gpu_slice_table() const {
1206 return gpu_slice_table_;
1207 }
1208 tables::GpuSliceTable* mutable_gpu_slice_table() { return &gpu_slice_table_; }
Mikael Pessa7160ccc2019-07-25 11:19:26 -07001209
Lalit Maganti8320e6d2019-03-14 18:49:33 +00001210 const CounterDefinitions& counter_definitions() const {
1211 return counter_definitions_;
1212 }
1213 CounterDefinitions* mutable_counter_definitions() {
1214 return &counter_definitions_;
1215 }
1216
1217 const CounterValues& counter_values() const { return counter_values_; }
1218 CounterValues* mutable_counter_values() { return &counter_values_; }
Isabelle Taylor14674d42018-09-07 11:33:11 +01001219
Primiano Tucci5cb84f82018-10-31 21:46:36 -07001220 const SqlStats& sql_stats() const { return sql_stats_; }
1221 SqlStats* mutable_sql_stats() { return &sql_stats_; }
1222
Isabelle Taylorc8c11202018-11-05 11:36:22 +00001223 const Instants& instants() const { return instants_; }
1224 Instants* mutable_instants() { return &instants_; }
1225
Primiano Tucci2c761ef2019-01-07 20:20:46 +00001226 const AndroidLogs& android_logs() const { return android_log_; }
1227 AndroidLogs* mutable_android_log() { return &android_log_; }
1228
Primiano Tucci0e38a142019-01-07 20:51:09 +00001229 const StatsMap& stats() const { return stats_; }
Lalit Maganti05e8c132018-11-09 18:16:12 +00001230
Ryan Savitski51413ad2019-07-09 14:25:21 +01001231 const Metadata& metadata() const { return metadata_; }
Ryan Savitski0476ee92019-07-09 14:29:33 +01001232 Metadata* mutable_metadata() { return &metadata_; }
Mikhail Khokhlove466c002019-05-23 13:33:33 +01001233
Lalit Maganti6e9c55e2018-11-29 12:00:39 +00001234 const Args& args() const { return args_; }
1235 Args* mutable_args() { return &args_; }
1236
Lalit Maganti1d915a62019-01-07 12:10:42 +00001237 const RawEvents& raw_events() const { return raw_events_; }
1238 RawEvents* mutable_raw_events() { return &raw_events_; }
1239
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001240 const StackProfileMappings& stack_profile_mappings() const {
1241 return stack_profile_mappings_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001242 }
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001243 StackProfileMappings* mutable_stack_profile_mappings() {
1244 return &stack_profile_mappings_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001245 }
1246
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001247 const StackProfileFrames& stack_profile_frames() const {
1248 return stack_profile_frames_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001249 }
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001250 StackProfileFrames* mutable_stack_profile_frames() {
1251 return &stack_profile_frames_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001252 }
1253
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001254 const StackProfileCallsites& stack_profile_callsites() const {
1255 return stack_profile_callsites_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001256 }
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001257 StackProfileCallsites* mutable_stack_profile_callsites() {
1258 return &stack_profile_callsites_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001259 }
1260
1261 const HeapProfileAllocations& heap_profile_allocations() const {
1262 return heap_profile_allocations_;
1263 }
1264 HeapProfileAllocations* mutable_heap_profile_allocations() {
1265 return &heap_profile_allocations_;
1266 }
Oystein Eftevaag7f64c102019-08-29 10:27:31 -07001267 const CpuProfileStackSamples& cpu_profile_stack_samples() const {
1268 return cpu_profile_stack_samples_;
1269 }
1270 CpuProfileStackSamples* mutable_cpu_profile_stack_samples() {
1271 return &cpu_profile_stack_samples_;
1272 }
Florian Mayer438b5ab2019-05-02 11:18:06 +01001273
Ioannis Ilkose0b47f52019-09-18 11:14:57 +01001274 const tables::SymbolTable& symbol_table() const { return symbol_table_; }
1275
1276 tables::SymbolTable* mutable_symbol_table() { return &symbol_table_; }
1277
Lalit Maganti20539c22019-09-04 12:36:10 +01001278 const tables::GpuTrackTable& gpu_track_table() const {
1279 return gpu_track_table_;
1280 }
1281 tables::GpuTrackTable* mutable_gpu_track_table() { return &gpu_track_table_; }
Mikael Pessa7160ccc2019-07-25 11:19:26 -07001282
Lalit Maganti5c454312019-04-08 12:11:17 +01001283 const StringPool& string_pool() const { return string_pool_; }
Lalit Magantiacda68b2018-10-29 15:23:25 +00001284
Hector Dearman5145e502019-09-18 16:52:24 +01001285 // |unique_processes_| always contains at least 1 element because the 0th ID
Isabelle Taylore7003fb2018-07-17 11:39:01 +01001286 // is reserved to indicate an invalid process.
Lalit Maganti9c6395b2019-01-17 00:25:09 +00001287 size_t process_count() const { return unique_processes_.size(); }
Primiano Tucci0d72a312018-08-07 14:42:45 +01001288
Hector Dearman5145e502019-09-18 16:52:24 +01001289 // |unique_threads_| always contains at least 1 element because the 0th ID
Isabelle Taylore7003fb2018-07-17 11:39:01 +01001290 // is reserved to indicate an invalid thread.
Lalit Maganti9c6395b2019-01-17 00:25:09 +00001291 size_t thread_count() const { return unique_threads_.size(); }
Isabelle Taylore7003fb2018-07-17 11:39:01 +01001292
Hector Dearman12323362018-08-09 16:09:28 +01001293 // Number of interned strings in the pool. Includes the empty string w/ ID=0.
1294 size_t string_count() const { return string_pool_.size(); }
1295
Ioannis Ilkosb8b11102019-01-29 17:56:55 +00001296 // Start / end ts (in nanoseconds) across the parsed trace events.
1297 // Returns (0, 0) if the trace is empty.
1298 std::pair<int64_t, int64_t> GetTraceTimestampBoundsNs() const;
1299
Lalit Maganticaed37e2018-06-01 03:03:08 +01001300 private:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +00001301 static constexpr uint8_t kRowIdTableShift = 32;
Isabelle Taylora0a22972018-08-03 12:06:12 +01001302
Primiano Tucci2da5d2e2018-08-10 14:23:31 +01001303 using StringHash = uint64_t;
Lalit Maganticaed37e2018-06-01 03:03:08 +01001304
Lalit Maganti5c454312019-04-08 12:11:17 +01001305 TraceStorage(const TraceStorage&) = delete;
1306 TraceStorage& operator=(const TraceStorage&) = delete;
1307
Lalit Maganti20539c22019-09-04 12:36:10 +01001308 TraceStorage(TraceStorage&&) = delete;
1309 TraceStorage& operator=(TraceStorage&&) = delete;
1310
1311 // One entry for each unique string in the trace.
1312 StringPool string_pool_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +00001313
Lalit Maganti05e8c132018-11-09 18:16:12 +00001314 // Stats about parsing the trace.
Primiano Tucci0e38a142019-01-07 20:51:09 +00001315 StatsMap stats_{};
Lalit Maganti35622b72018-06-06 12:03:11 +01001316
Ryan Savitski51413ad2019-07-09 14:25:21 +01001317 // Extra data extracted from the trace. Includes:
1318 // * metadata from chrome and benchmarking infrastructure
1319 // * descriptions of android packages
1320 Metadata metadata_{};
Mikhail Khokhlove466c002019-05-23 13:33:33 +01001321
Lalit Magantid11d3e02019-07-26 12:32:09 +05301322 // Metadata for tracks.
Lalit Magantiac68e9c2019-09-09 18:12:15 +01001323 tables::TrackTable track_table_{&string_pool_, nullptr};
Lalit Maganti4ea78d92019-09-20 20:20:41 +01001324 tables::GpuTrackTable gpu_track_table_{&string_pool_, &track_table_};
Lalit Maganti53bdbb22019-09-25 11:11:18 +01001325 tables::ProcessTrackTable process_track_table_{&string_pool_, &track_table_};
Lalit Magantifedc15b2019-09-26 18:37:52 +01001326 tables::ThreadTrackTable thread_track_table_{&string_pool_, &track_table_};
Eric Seckler5703ede2019-07-10 10:13:02 +01001327
Mikael Pessa803090c2019-08-23 16:03:34 -07001328 // Metadata for gpu tracks.
Mikael Pessa803090c2019-08-23 16:03:34 -07001329 GpuContexts gpu_contexts_;
1330
Lalit Maganticaed37e2018-06-01 03:03:08 +01001331 // One entry for each CPU in the trace.
Lalit Magantiff69c112018-09-24 12:07:47 +01001332 Slices slices_;
Lalit Maganticaed37e2018-06-01 03:03:08 +01001333
Lalit Maganti6e9c55e2018-11-29 12:00:39 +00001334 // Args for all other tables.
1335 Args args_;
1336
Isabelle Taylor47328cf2018-06-12 14:33:59 +01001337 // One entry for each UniquePid, with UniquePid as the index.
Ioannis Ilkos9c03cbd2019-03-12 18:30:43 +00001338 // Never hold on to pointers to Process, as vector resize will
1339 // invalidate them.
1340 std::vector<Process> unique_processes_;
Isabelle Taylor68e42192018-06-19 16:19:31 +01001341
Isabelle Taylor68e42192018-06-19 16:19:31 +01001342 // One entry for each UniqueTid, with UniqueTid as the index.
Isabelle Taylor3dd366c2018-06-22 16:21:41 +01001343 std::deque<Thread> unique_threads_;
Primiano Tucci0d72a312018-08-07 14:42:45 +01001344
1345 // Slices coming from userspace events (e.g. Chromium TRACE_EVENT macros).
1346 NestableSlices nestable_slices_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +01001347
Eric Secklerd3b89d52019-07-10 15:36:29 +01001348 // Additional attributes for threads slices (sub-type of NestableSlices).
1349 ThreadSlices thread_slices_;
1350
Eric Secklerc3430c62019-07-22 10:49:58 +01001351 // Additional attributes for virtual track slices (sub-type of
1352 // NestableSlices).
1353 VirtualTrackSlices virtual_track_slices_;
1354
Mikael Pessa803090c2019-08-23 16:03:34 -07001355 // Additional attributes for gpu track slices (sub-type of
1356 // NestableSlices).
Lalit Maganti20539c22019-09-04 12:36:10 +01001357 tables::GpuSliceTable gpu_slice_table_{&string_pool_, nullptr};
Mikael Pessa803090c2019-08-23 16:03:34 -07001358
Hector Dearman2442d612019-06-04 18:05:23 +01001359 // The type of counters in the trace. Can be thought of as the "metadata".
Lalit Maganti8320e6d2019-03-14 18:49:33 +00001360 CounterDefinitions counter_definitions_;
1361
1362 // The values from the Counter events from the trace. This includes CPU
1363 // frequency events as well systrace trace_marker counter events.
1364 CounterValues counter_values_;
Primiano Tucci5cb84f82018-10-31 21:46:36 -07001365
1366 SqlStats sql_stats_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +00001367
Isabelle Taylorc8c11202018-11-05 11:36:22 +00001368 // These are instantaneous events in the trace. They have no duration
1369 // and do not have a value that make sense to track over time.
1370 // e.g. signal events
1371 Instants instants_;
Lalit Maganti1d915a62019-01-07 12:10:42 +00001372
1373 // Raw events are every ftrace event in the trace. The raw event includes
1374 // the timestamp and the pid. The args for the raw event will be in the
1375 // args table. This table can be used to generate a text version of the
1376 // trace.
1377 RawEvents raw_events_;
Primiano Tucci2c761ef2019-01-07 20:20:46 +00001378 AndroidLogs android_log_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001379
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001380 StackProfileMappings stack_profile_mappings_;
1381 StackProfileFrames stack_profile_frames_;
1382 StackProfileCallsites stack_profile_callsites_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001383 HeapProfileAllocations heap_profile_allocations_;
Oystein Eftevaag7f64c102019-08-29 10:27:31 -07001384 CpuProfileStackSamples cpu_profile_stack_samples_;
Ioannis Ilkose0b47f52019-09-18 11:14:57 +01001385
1386 // Symbol tables (mappings from frames to symbol names)
1387 tables::SymbolTable symbol_table_{&string_pool_, nullptr};
Lalit Maganticaed37e2018-06-01 03:03:08 +01001388};
1389
1390} // namespace trace_processor
1391} // namespace perfetto
1392
Florian Mayerbee52132019-05-02 13:59:56 +01001393namespace std {
1394
1395template <>
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001396struct hash<
1397 ::perfetto::trace_processor::TraceStorage::StackProfileFrames::Row> {
Florian Mayerbee52132019-05-02 13:59:56 +01001398 using argument_type =
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001399 ::perfetto::trace_processor::TraceStorage::StackProfileFrames::Row;
Florian Mayerbee52132019-05-02 13:59:56 +01001400 using result_type = size_t;
1401
1402 result_type operator()(const argument_type& r) const {
1403 return std::hash<::perfetto::trace_processor::StringId>{}(r.name_id) ^
1404 std::hash<int64_t>{}(r.mapping_row) ^ std::hash<int64_t>{}(r.rel_pc);
1405 }
1406};
1407
1408template <>
1409struct hash<
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001410 ::perfetto::trace_processor::TraceStorage::StackProfileCallsites::Row> {
Florian Mayerbee52132019-05-02 13:59:56 +01001411 using argument_type =
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001412 ::perfetto::trace_processor::TraceStorage::StackProfileCallsites::Row;
Florian Mayerbee52132019-05-02 13:59:56 +01001413 using result_type = size_t;
1414
1415 result_type operator()(const argument_type& r) const {
1416 return std::hash<int64_t>{}(r.depth) ^ std::hash<int64_t>{}(r.parent_id) ^
1417 std::hash<int64_t>{}(r.frame_row);
1418 }
1419};
1420
1421template <>
1422struct hash<
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001423 ::perfetto::trace_processor::TraceStorage::StackProfileMappings::Row> {
Florian Mayerbee52132019-05-02 13:59:56 +01001424 using argument_type =
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001425 ::perfetto::trace_processor::TraceStorage::StackProfileMappings::Row;
Florian Mayerbee52132019-05-02 13:59:56 +01001426 using result_type = size_t;
1427
1428 result_type operator()(const argument_type& r) const {
1429 return std::hash<::perfetto::trace_processor::StringId>{}(r.build_id) ^
Florian Mayer12655732019-07-02 15:08:26 +01001430 std::hash<int64_t>{}(r.exact_offset) ^
1431 std::hash<int64_t>{}(r.start_offset) ^
1432 std::hash<int64_t>{}(r.start) ^ std::hash<int64_t>{}(r.end) ^
1433 std::hash<int64_t>{}(r.load_bias) ^
Florian Mayerbee52132019-05-02 13:59:56 +01001434 std::hash<::perfetto::trace_processor::StringId>{}(r.name_id);
1435 }
1436};
1437
1438} // namespace std
1439
Lalit Maganticaed37e2018-06-01 03:03:08 +01001440#endif // SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_