blob: b27d5f1d7c19a0e8c975b9e772d98d52b686e212 [file] [log] [blame]
Lalit Maganticaed37e2018-06-01 03:03:08 +01001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_
18#define SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_
19
Lalit Maganti35622b72018-06-06 12:03:11 +010020#include <array>
Lalit Maganticaed37e2018-06-01 03:03:08 +010021#include <deque>
Isabelle Taylor47328cf2018-06-12 14:33:59 +010022#include <map>
Lalit Maganticaed37e2018-06-01 03:03:08 +010023#include <string>
24#include <unordered_map>
Ioannis Ilkosb8b11102019-01-29 17:56:55 +000025#include <utility>
Lalit Maganticaed37e2018-06-01 03:03:08 +010026#include <vector>
27
Lalit Maganti35622b72018-06-06 12:03:11 +010028#include "perfetto/base/logging.h"
Eric Seckler83dcc8c2019-08-21 12:18:43 +010029#include "perfetto/base/time.h"
Primiano Tucci2c5488f2019-06-01 03:27:28 +010030#include "perfetto/ext/base/hash.h"
31#include "perfetto/ext/base/optional.h"
32#include "perfetto/ext/base/string_view.h"
Primiano Tucci2c5488f2019-06-01 03:27:28 +010033#include "perfetto/ext/base/utils.h"
Eric Secklerf93b8cf2019-11-20 21:33:01 +000034#include "perfetto/trace_processor/basic_types.h"
Lalit Maganti9ecfab32019-12-17 17:45:38 +000035#include "src/trace_processor/containers/string_pool.h"
Lalit Magantib0b53ee2019-01-24 17:53:39 +000036#include "src/trace_processor/ftrace_utils.h"
Mikhail Khokhlove466c002019-05-23 13:33:33 +010037#include "src/trace_processor/metadata.h"
Primiano Tucci0e38a142019-01-07 20:51:09 +000038#include "src/trace_processor/stats.h"
Lalit Maganti4b3b3ad2019-12-04 19:27:35 +000039#include "src/trace_processor/tables/counter_tables.h"
Ioannis Ilkose0b47f52019-09-18 11:14:57 +010040#include "src/trace_processor/tables/profiler_tables.h"
Lalit Maganti20539c22019-09-04 12:36:10 +010041#include "src/trace_processor/tables/slice_tables.h"
42#include "src/trace_processor/tables/track_tables.h"
Mikhail Khokhlov85a0dd02019-05-17 14:22:28 +010043#include "src/trace_processor/variadic.h"
Lalit Maganti35622b72018-06-06 12:03:11 +010044
Lalit Maganticaed37e2018-06-01 03:03:08 +010045namespace perfetto {
46namespace trace_processor {
47
Isabelle Taylora0a22972018-08-03 12:06:12 +010048// UniquePid is an offset into |unique_processes_|. This is necessary because
49// Unix pids are reused and thus not guaranteed to be unique over a long
50// period of time.
51using UniquePid = uint32_t;
Primiano Tucci0d72a312018-08-07 14:42:45 +010052
Isabelle Taylora0a22972018-08-03 12:06:12 +010053// UniqueTid is an offset into |unique_threads_|. Necessary because tids can
54// be reused.
55using UniqueTid = uint32_t;
56
Primiano Tucci0d72a312018-08-07 14:42:45 +010057// StringId is an offset into |string_pool_|.
Lalit Maganti5c454312019-04-08 12:11:17 +010058using StringId = StringPool::Id;
Lalit Maganti1a2936f2019-08-29 17:42:33 +010059static const StringId kNullStringId = StringId(0);
Primiano Tucci0d72a312018-08-07 14:42:45 +010060
Lalit Maganti5ea9e932018-11-30 14:19:39 +000061// Identifiers for all the tables in the database.
62enum TableId : uint8_t {
63 // Intentionally don't have TableId == 0 so that RowId == 0 can refer to an
64 // invalid row id.
Lalit Maganti8320e6d2019-03-14 18:49:33 +000065 kCounterValues = 1,
Lalit Maganti1d915a62019-01-07 12:10:42 +000066 kRawEvents = 2,
Lalit Maganti66ed7ad2019-01-11 16:47:26 +000067 kInstants = 3,
Isabelle Taylorb9222c32019-01-31 10:58:37 +000068 kSched = 4,
Eric Seckler70cc4422019-05-28 16:00:23 +010069 kNestableSlices = 5,
Ryan Savitski51413ad2019-07-09 14:25:21 +010070 kMetadataTable = 6,
Lalit Maganti53bdbb22019-09-25 11:11:18 +010071 kTrack = 7,
Mohammad Reza Zakerinasabb06d1852019-09-11 14:41:36 -040072 kVulkanMemoryAllocation = 8,
Lalit Maganti5ea9e932018-11-30 14:19:39 +000073};
74
75// The top 8 bits are set to the TableId and the bottom 32 to the row of the
76// table.
Lalit Maganti85ca4a82018-12-07 17:28:02 +000077using RowId = int64_t;
Lalit Maganti5ea9e932018-11-30 14:19:39 +000078static const RowId kInvalidRowId = 0;
79
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +000080using ArgSetId = uint32_t;
81static const ArgSetId kInvalidArgSetId = 0;
82
Eric Seckler5703ede2019-07-10 10:13:02 +010083using TrackId = uint32_t;
84
Lalit Maganti809b2f92019-11-07 13:27:26 +000085// TODO(lalitm): this is a temporary hack while migrating the counters table and
86// will be removed when the migration is complete.
87static const TrackId kInvalidTrackId = std::numeric_limits<TrackId>::max();
88
Lalit Maganti21b21632019-09-28 16:50:23 +010089enum class RefType {
Primiano Tucci5403e4f2018-11-27 10:07:03 +000090 kRefNoRef = 0,
91 kRefUtid = 1,
92 kRefCpuId = 2,
93 kRefIrq = 3,
94 kRefSoftIrq = 4,
95 kRefUpid = 5,
Sidath Senanayake1f5f93a2019-06-06 22:24:15 +010096 kRefGpuId = 6,
Eric Seckler5703ede2019-07-10 10:13:02 +010097 kRefTrack = 7,
Primiano Tucci5403e4f2018-11-27 10:07:03 +000098 kRefMax
Isabelle Taylora97c5f52018-10-23 17:36:12 +010099};
Isabelle Taylor14674d42018-09-07 11:33:11 +0100100
Lalit Magantib134d252019-12-10 12:21:27 +0000101const std::vector<NullTermStringView>& GetRefTypeStringMap();
Eric Seckler972225e2019-04-18 11:07:12 +0100102
Lalit Maganticaed37e2018-06-01 03:03:08 +0100103// Stores a data inside a trace file in a columnar form. This makes it efficient
104// to read or search across a single field of the trace (e.g. all the thread
105// names for a given CPU).
106class TraceStorage {
107 public:
Eric Secklerf93b8cf2019-11-20 21:33:01 +0000108 TraceStorage(const Config& = Config());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100109
110 virtual ~TraceStorage();
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100111
Isabelle Taylora0a22972018-08-03 12:06:12 +0100112 // Information about a unique process seen in a trace.
113 struct Process {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100114 explicit Process(uint32_t p) : pid(p) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000115 int64_t start_ns = 0;
Lalit Maganti637589a2019-07-04 17:25:29 +0100116 int64_t end_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100117 StringId name_id = 0;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100118 uint32_t pid = 0;
Lalit Maganti369b0572019-07-11 15:35:09 +0100119 base::Optional<UniquePid> parent_upid;
Ioannis Ilkosfd554bc2019-11-16 01:14:57 +0000120 base::Optional<uint32_t> uid;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100121 };
122
123 // Information about a unique thread seen in a trace.
124 struct Thread {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100125 explicit Thread(uint32_t t) : tid(t) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000126 int64_t start_ns = 0;
Lalit Magantib5bd2332019-06-06 14:20:47 +0100127 int64_t end_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100128 StringId name_id = 0;
Lalit Maganti770886a2018-11-16 17:40:21 +0000129 base::Optional<UniquePid> upid;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100130 uint32_t tid = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100131 };
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100132
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000133 // Generic key value storage which can be referenced by other tables.
134 class Args {
135 public:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000136 struct Arg {
137 StringId flat_key = 0;
138 StringId key = 0;
139 Variadic value = Variadic::Integer(0);
140
141 // This is only used by the arg tracker and so is not part of the hash.
142 RowId row_id = 0;
143 };
144
145 struct ArgHasher {
146 uint64_t operator()(const Arg& arg) const noexcept {
Lalit Maganti1f464742019-02-28 13:49:31 +0000147 base::Hash hash;
148 hash.Update(arg.key);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000149 // We don't hash arg.flat_key because it's a subsequence of arg.key.
150 switch (arg.value.type) {
151 case Variadic::Type::kInt:
Lalit Maganti1f464742019-02-28 13:49:31 +0000152 hash.Update(arg.value.int_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000153 break;
Eric Secklerc93823e2019-06-03 16:49:19 +0100154 case Variadic::Type::kUint:
155 hash.Update(arg.value.uint_value);
156 break;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000157 case Variadic::Type::kString:
Lalit Maganti1f464742019-02-28 13:49:31 +0000158 hash.Update(arg.value.string_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000159 break;
160 case Variadic::Type::kReal:
Lalit Maganti1f464742019-02-28 13:49:31 +0000161 hash.Update(arg.value.real_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000162 break;
Eric Secklerc93823e2019-06-03 16:49:19 +0100163 case Variadic::Type::kPointer:
164 hash.Update(arg.value.pointer_value);
165 break;
166 case Variadic::Type::kBool:
167 hash.Update(arg.value.bool_value);
168 break;
169 case Variadic::Type::kJson:
170 hash.Update(arg.value.json_value);
171 break;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000172 }
Lalit Maganti1f464742019-02-28 13:49:31 +0000173 return hash.digest();
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000174 }
175 };
176
177 const std::deque<ArgSetId>& set_ids() const { return set_ids_; }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000178 const std::deque<StringId>& flat_keys() const { return flat_keys_; }
179 const std::deque<StringId>& keys() const { return keys_; }
Lalit Maganti1d915a62019-01-07 12:10:42 +0000180 const std::deque<Variadic>& arg_values() const { return arg_values_; }
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000181 uint32_t args_count() const {
182 return static_cast<uint32_t>(set_ids_.size());
Lalit Maganti79472be2018-12-04 13:41:27 +0000183 }
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000184
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000185 ArgSetId AddArgSet(const std::vector<Arg>& args,
186 uint32_t begin,
187 uint32_t end) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000188 base::Hash hash;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000189 for (uint32_t i = begin; i < end; i++) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000190 hash.Update(ArgHasher()(args[i]));
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000191 }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000192
Lalit Maganti1f464742019-02-28 13:49:31 +0000193 ArgSetHash digest = hash.digest();
194 auto it = arg_row_for_hash_.find(digest);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000195 if (it != arg_row_for_hash_.end()) {
196 return set_ids_[it->second];
197 }
198
199 // The +1 ensures that nothing has an id == kInvalidArgSetId == 0.
200 ArgSetId id = static_cast<uint32_t>(arg_row_for_hash_.size()) + 1;
Lalit Maganti1f464742019-02-28 13:49:31 +0000201 arg_row_for_hash_.emplace(digest, args_count());
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000202 for (uint32_t i = begin; i < end; i++) {
203 const auto& arg = args[i];
204 set_ids_.emplace_back(id);
205 flat_keys_.emplace_back(arg.flat_key);
206 keys_.emplace_back(arg.key);
207 arg_values_.emplace_back(arg.value);
208 }
209 return id;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000210 }
211
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000212 private:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000213 using ArgSetHash = uint64_t;
214
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000215 std::deque<ArgSetId> set_ids_;
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000216 std::deque<StringId> flat_keys_;
217 std::deque<StringId> keys_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000218 std::deque<Variadic> arg_values_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000219
220 std::unordered_map<ArgSetHash, uint32_t> arg_row_for_hash_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000221 };
222
Lalit Magantid11d3e02019-07-26 12:32:09 +0530223 class Tracks {
224 public:
225 inline uint32_t AddTrack(StringId name) {
226 names_.emplace_back(name);
227 return track_count() - 1;
228 }
229
230 uint32_t track_count() const {
231 return static_cast<uint32_t>(names_.size());
232 }
233
234 const std::deque<StringId>& names() const { return names_; }
235
236 private:
237 std::deque<StringId> names_;
238 };
239
Mikael Pessa803090c2019-08-23 16:03:34 -0700240 class GpuContexts {
241 public:
242 inline void AddGpuContext(uint64_t context_id,
243 UniquePid upid,
244 uint32_t priority) {
245 context_ids_.emplace_back(context_id);
246 upids_.emplace_back(upid);
247 priorities_.emplace_back(priority);
248 }
249
250 uint32_t gpu_context_count() const {
251 return static_cast<uint32_t>(context_ids_.size());
252 }
253
254 const std::deque<uint64_t>& context_ids() const { return context_ids_; }
255 const std::deque<UniquePid>& upids() const { return upids_; }
256 const std::deque<uint32_t>& priorities() const { return priorities_; }
257
258 private:
259 std::deque<uint64_t> context_ids_;
260 std::deque<UniquePid> upids_;
261 std::deque<uint32_t> priorities_;
262 };
263
Lalit Magantiff69c112018-09-24 12:07:47 +0100264 class Slices {
Lalit Maganti35622b72018-06-06 12:03:11 +0100265 public:
Lalit Magantifde29042018-10-04 13:28:52 +0100266 inline size_t AddSlice(uint32_t cpu,
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000267 int64_t start_ns,
268 int64_t duration_ns,
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000269 UniqueTid utid,
270 ftrace_utils::TaskState end_state,
271 int32_t priority) {
Lalit Magantiff69c112018-09-24 12:07:47 +0100272 cpus_.emplace_back(cpu);
Lalit Maganti35622b72018-06-06 12:03:11 +0100273 start_ns_.emplace_back(start_ns);
274 durations_.emplace_back(duration_ns);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100275 utids_.emplace_back(utid);
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000276 end_states_.emplace_back(end_state);
277 priorities_.emplace_back(priority);
Lalit Maganti58638932019-01-31 10:48:26 +0000278
279 if (utid >= rows_for_utids_.size())
280 rows_for_utids_.resize(utid + 1);
281 rows_for_utids_[utid].emplace_back(slice_count() - 1);
Lalit Magantifde29042018-10-04 13:28:52 +0100282 return slice_count() - 1;
283 }
284
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000285 void set_duration(size_t index, int64_t duration_ns) {
Lalit Magantifde29042018-10-04 13:28:52 +0100286 durations_[index] = duration_ns;
Lalit Maganti35622b72018-06-06 12:03:11 +0100287 }
288
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000289 void set_end_state(size_t index, ftrace_utils::TaskState end_state) {
290 end_states_[index] = end_state;
291 }
292
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100293 size_t slice_count() const { return start_ns_.size(); }
Lalit Maganti35622b72018-06-06 12:03:11 +0100294
Lalit Magantiff69c112018-09-24 12:07:47 +0100295 const std::deque<uint32_t>& cpus() const { return cpus_; }
296
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000297 const std::deque<int64_t>& start_ns() const { return start_ns_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100298
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000299 const std::deque<int64_t>& durations() const { return durations_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100300
Isabelle Taylor68e42192018-06-19 16:19:31 +0100301 const std::deque<UniqueTid>& utids() const { return utids_; }
302
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000303 const std::deque<ftrace_utils::TaskState>& end_state() const {
304 return end_states_;
305 }
306
307 const std::deque<int32_t>& priorities() const { return priorities_; }
308
Lalit Maganti58638932019-01-31 10:48:26 +0000309 const std::deque<std::vector<uint32_t>>& rows_for_utids() const {
Lalit Magantif0f09c32019-01-18 17:29:31 +0000310 return rows_for_utids_;
311 }
312
Lalit Maganti35622b72018-06-06 12:03:11 +0100313 private:
Hector Dearman947f12a2018-09-11 16:50:36 +0100314 // Each deque below has the same number of entries (the number of slices
Lalit Maganti35622b72018-06-06 12:03:11 +0100315 // in the trace for the CPU).
Lalit Magantiff69c112018-09-24 12:07:47 +0100316 std::deque<uint32_t> cpus_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000317 std::deque<int64_t> start_ns_;
318 std::deque<int64_t> durations_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100319 std::deque<UniqueTid> utids_;
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000320 std::deque<ftrace_utils::TaskState> end_states_;
321 std::deque<int32_t> priorities_;
Lalit Maganti58638932019-01-31 10:48:26 +0000322
323 // One row per utid.
324 std::deque<std::vector<uint32_t>> rows_for_utids_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100325 };
Isabelle Taylor68e42192018-06-19 16:19:31 +0100326
Eric Secklerd3b89d52019-07-10 15:36:29 +0100327 class ThreadSlices {
328 public:
329 inline uint32_t AddThreadSlice(uint32_t slice_id,
330 int64_t thread_timestamp_ns,
331 int64_t thread_duration_ns,
332 int64_t thread_instruction_count,
333 int64_t thread_instruction_delta) {
334 slice_ids_.emplace_back(slice_id);
335 thread_timestamp_ns_.emplace_back(thread_timestamp_ns);
336 thread_duration_ns_.emplace_back(thread_duration_ns);
337 thread_instruction_counts_.emplace_back(thread_instruction_count);
338 thread_instruction_deltas_.emplace_back(thread_instruction_delta);
339 return slice_count() - 1;
340 }
341
Eric Secklerc3430c62019-07-22 10:49:58 +0100342 uint32_t slice_count() const {
343 return static_cast<uint32_t>(slice_ids_.size());
Eric Secklerd3b89d52019-07-10 15:36:29 +0100344 }
345
Eric Secklerc3430c62019-07-22 10:49:58 +0100346 const std::deque<uint32_t>& slice_ids() const { return slice_ids_; }
347 const std::deque<int64_t>& thread_timestamp_ns() const {
348 return thread_timestamp_ns_;
349 }
350 const std::deque<int64_t>& thread_duration_ns() const {
351 return thread_duration_ns_;
352 }
353 const std::deque<int64_t>& thread_instruction_counts() const {
354 return thread_instruction_counts_;
355 }
356 const std::deque<int64_t>& thread_instruction_deltas() const {
357 return thread_instruction_deltas_;
358 }
359
360 base::Optional<uint32_t> FindRowForSliceId(uint32_t slice_id) const {
361 auto it =
362 std::lower_bound(slice_ids().begin(), slice_ids().end(), slice_id);
363 if (it != slice_ids().end() && *it == slice_id) {
364 return static_cast<uint32_t>(std::distance(slice_ids().begin(), it));
365 }
366 return base::nullopt;
367 }
368
Eric Seckler54f30a32019-07-19 15:10:29 +0100369 void UpdateThreadDeltasForSliceId(uint32_t slice_id,
370 int64_t end_thread_timestamp_ns,
371 int64_t end_thread_instruction_count) {
Eric Secklerc3430c62019-07-22 10:49:58 +0100372 uint32_t row = *FindRowForSliceId(slice_id);
373 int64_t begin_ns = thread_timestamp_ns_[row];
374 thread_duration_ns_[row] = end_thread_timestamp_ns - begin_ns;
Eric Seckler54f30a32019-07-19 15:10:29 +0100375 int64_t begin_ticount = thread_instruction_counts_[row];
376 thread_instruction_deltas_[row] =
377 end_thread_instruction_count - begin_ticount;
Eric Secklerc3430c62019-07-22 10:49:58 +0100378 }
379
380 private:
381 std::deque<uint32_t> slice_ids_;
382 std::deque<int64_t> thread_timestamp_ns_;
383 std::deque<int64_t> thread_duration_ns_;
384 std::deque<int64_t> thread_instruction_counts_;
385 std::deque<int64_t> thread_instruction_deltas_;
386 };
387
388 class VirtualTrackSlices {
389 public:
390 inline uint32_t AddVirtualTrackSlice(uint32_t slice_id,
391 int64_t thread_timestamp_ns,
392 int64_t thread_duration_ns,
393 int64_t thread_instruction_count,
394 int64_t thread_instruction_delta) {
395 slice_ids_.emplace_back(slice_id);
396 thread_timestamp_ns_.emplace_back(thread_timestamp_ns);
397 thread_duration_ns_.emplace_back(thread_duration_ns);
398 thread_instruction_counts_.emplace_back(thread_instruction_count);
399 thread_instruction_deltas_.emplace_back(thread_instruction_delta);
400 return slice_count() - 1;
Eric Secklerd3b89d52019-07-10 15:36:29 +0100401 }
402
403 uint32_t slice_count() const {
404 return static_cast<uint32_t>(slice_ids_.size());
405 }
406
407 const std::deque<uint32_t>& slice_ids() const { return slice_ids_; }
408 const std::deque<int64_t>& thread_timestamp_ns() const {
409 return thread_timestamp_ns_;
410 }
411 const std::deque<int64_t>& thread_duration_ns() const {
412 return thread_duration_ns_;
413 }
414 const std::deque<int64_t>& thread_instruction_counts() const {
415 return thread_instruction_counts_;
416 }
417 const std::deque<int64_t>& thread_instruction_deltas() const {
418 return thread_instruction_deltas_;
419 }
420
Mikhail Khokhlov7db04912019-07-18 16:11:11 +0100421 base::Optional<uint32_t> FindRowForSliceId(uint32_t slice_id) const {
Eric Secklerd3b89d52019-07-10 15:36:29 +0100422 auto it =
423 std::lower_bound(slice_ids().begin(), slice_ids().end(), slice_id);
Mikhail Khokhlov7db04912019-07-18 16:11:11 +0100424 if (it != slice_ids().end() && *it == slice_id) {
425 return static_cast<uint32_t>(std::distance(slice_ids().begin(), it));
426 }
427 return base::nullopt;
Eric Secklerd3b89d52019-07-10 15:36:29 +0100428 }
429
Eric Seckler54f30a32019-07-19 15:10:29 +0100430 void UpdateThreadDeltasForSliceId(uint32_t slice_id,
431 int64_t end_thread_timestamp_ns,
432 int64_t end_thread_instruction_count) {
Mikhail Khokhlov7db04912019-07-18 16:11:11 +0100433 uint32_t row = *FindRowForSliceId(slice_id);
Eric Secklerd3b89d52019-07-10 15:36:29 +0100434 int64_t begin_ns = thread_timestamp_ns_[row];
435 thread_duration_ns_[row] = end_thread_timestamp_ns - begin_ns;
Eric Seckler54f30a32019-07-19 15:10:29 +0100436 int64_t begin_ticount = thread_instruction_counts_[row];
437 thread_instruction_deltas_[row] =
438 end_thread_instruction_count - begin_ticount;
Eric Secklerd3b89d52019-07-10 15:36:29 +0100439 }
440
441 private:
442 std::deque<uint32_t> slice_ids_;
443 std::deque<int64_t> thread_timestamp_ns_;
444 std::deque<int64_t> thread_duration_ns_;
445 std::deque<int64_t> thread_instruction_counts_;
446 std::deque<int64_t> thread_instruction_deltas_;
447 };
448
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700449 class SqlStats {
450 public:
451 static constexpr size_t kMaxLogEntries = 100;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100452 uint32_t RecordQueryBegin(const std::string& query,
453 int64_t time_queued,
454 int64_t time_started);
455 void RecordQueryFirstNext(uint32_t row, int64_t time_first_next);
456 void RecordQueryEnd(uint32_t row, int64_t time_end);
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700457 size_t size() const { return queries_.size(); }
458 const std::deque<std::string>& queries() const { return queries_; }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000459 const std::deque<int64_t>& times_queued() const { return times_queued_; }
460 const std::deque<int64_t>& times_started() const { return times_started_; }
Lalit Magantiaac2f652019-04-30 12:16:21 +0100461 const std::deque<int64_t>& times_first_next() const {
462 return times_first_next_;
463 }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000464 const std::deque<int64_t>& times_ended() const { return times_ended_; }
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700465
466 private:
Lalit Magantiaac2f652019-04-30 12:16:21 +0100467 uint32_t popped_queries_ = 0;
468
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700469 std::deque<std::string> queries_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000470 std::deque<int64_t> times_queued_;
471 std::deque<int64_t> times_started_;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100472 std::deque<int64_t> times_first_next_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000473 std::deque<int64_t> times_ended_;
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700474 };
475
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000476 class Instants {
477 public:
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000478 inline uint32_t AddInstantEvent(int64_t timestamp,
479 StringId name_id,
480 double value,
481 int64_t ref,
482 RefType type) {
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000483 timestamps_.emplace_back(timestamp);
484 name_ids_.emplace_back(name_id);
485 values_.emplace_back(value);
486 refs_.emplace_back(ref);
487 types_.emplace_back(type);
Lalit Maganti1c21d172019-02-07 10:48:24 +0000488 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000489 return static_cast<uint32_t>(instant_count() - 1);
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000490 }
491
Lalit Maganti521d97b2019-04-29 13:47:03 +0100492 void set_ref(uint32_t row, int64_t ref) { refs_[row] = ref; }
493
Lalit Maganti1c21d172019-02-07 10:48:24 +0000494 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
495
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000496 size_t instant_count() const { return timestamps_.size(); }
497
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000498 const std::deque<int64_t>& timestamps() const { return timestamps_; }
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000499
500 const std::deque<StringId>& name_ids() const { return name_ids_; }
501
502 const std::deque<double>& values() const { return values_; }
503
504 const std::deque<int64_t>& refs() const { return refs_; }
505
506 const std::deque<RefType>& types() const { return types_; }
507
Lalit Maganti1c21d172019-02-07 10:48:24 +0000508 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
509
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000510 private:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000511 std::deque<int64_t> timestamps_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000512 std::deque<StringId> name_ids_;
513 std::deque<double> values_;
514 std::deque<int64_t> refs_;
515 std::deque<RefType> types_;
Lalit Maganti1c21d172019-02-07 10:48:24 +0000516 std::deque<ArgSetId> arg_set_ids_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000517 };
518
Lalit Maganti1d915a62019-01-07 12:10:42 +0000519 class RawEvents {
520 public:
521 inline RowId AddRawEvent(int64_t timestamp,
522 StringId name_id,
Lalit Magantie87cc812019-01-10 15:20:06 +0000523 uint32_t cpu,
Lalit Maganti1d915a62019-01-07 12:10:42 +0000524 UniqueTid utid) {
525 timestamps_.emplace_back(timestamp);
526 name_ids_.emplace_back(name_id);
Lalit Magantie87cc812019-01-10 15:20:06 +0000527 cpus_.emplace_back(cpu);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000528 utids_.emplace_back(utid);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000529 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000530 return CreateRowId(TableId::kRawEvents,
531 static_cast<uint32_t>(raw_event_count() - 1));
532 }
533
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000534 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
535
Lalit Maganti1d915a62019-01-07 12:10:42 +0000536 size_t raw_event_count() const { return timestamps_.size(); }
537
538 const std::deque<int64_t>& timestamps() const { return timestamps_; }
539
540 const std::deque<StringId>& name_ids() const { return name_ids_; }
541
Lalit Magantie87cc812019-01-10 15:20:06 +0000542 const std::deque<uint32_t>& cpus() const { return cpus_; }
543
Lalit Maganti1d915a62019-01-07 12:10:42 +0000544 const std::deque<UniqueTid>& utids() const { return utids_; }
545
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000546 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
547
Lalit Maganti1d915a62019-01-07 12:10:42 +0000548 private:
549 std::deque<int64_t> timestamps_;
550 std::deque<StringId> name_ids_;
Lalit Magantie87cc812019-01-10 15:20:06 +0000551 std::deque<uint32_t> cpus_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000552 std::deque<UniqueTid> utids_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000553 std::deque<ArgSetId> arg_set_ids_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000554 };
555
Primiano Tucci2c761ef2019-01-07 20:20:46 +0000556 class AndroidLogs {
557 public:
558 inline size_t AddLogEvent(int64_t timestamp,
559 UniqueTid utid,
560 uint8_t prio,
561 StringId tag_id,
562 StringId msg_id) {
563 timestamps_.emplace_back(timestamp);
564 utids_.emplace_back(utid);
565 prios_.emplace_back(prio);
566 tag_ids_.emplace_back(tag_id);
567 msg_ids_.emplace_back(msg_id);
568 return size() - 1;
569 }
570
571 size_t size() const { return timestamps_.size(); }
572
573 const std::deque<int64_t>& timestamps() const { return timestamps_; }
574 const std::deque<UniqueTid>& utids() const { return utids_; }
575 const std::deque<uint8_t>& prios() const { return prios_; }
576 const std::deque<StringId>& tag_ids() const { return tag_ids_; }
577 const std::deque<StringId>& msg_ids() const { return msg_ids_; }
578
579 private:
580 std::deque<int64_t> timestamps_;
581 std::deque<UniqueTid> utids_;
582 std::deque<uint8_t> prios_;
583 std::deque<StringId> tag_ids_;
584 std::deque<StringId> msg_ids_;
585 };
586
Primiano Tucci0e38a142019-01-07 20:51:09 +0000587 struct Stats {
588 using IndexMap = std::map<int, int64_t>;
589 int64_t value = 0;
590 IndexMap indexed_values;
591 };
592 using StatsMap = std::array<Stats, stats::kNumKeys>;
593
Ryan Savitski51413ad2019-07-09 14:25:21 +0100594 class Metadata {
595 public:
596 const std::deque<metadata::KeyIDs>& keys() const { return keys_; }
597 const std::deque<Variadic>& values() const { return values_; }
598
599 RowId SetScalarMetadata(metadata::KeyIDs key, Variadic value) {
600 PERFETTO_DCHECK(key < metadata::kNumKeys);
601 PERFETTO_DCHECK(metadata::kKeyTypes[key] == metadata::kSingle);
602 PERFETTO_DCHECK(value.type == metadata::kValueTypes[key]);
603
604 // Already set - on release builds, overwrite the previous value.
605 auto it = scalar_indices.find(key);
606 if (it != scalar_indices.end()) {
607 PERFETTO_DFATAL("Setting a scalar metadata entry more than once.");
608 uint32_t index = static_cast<uint32_t>(it->second);
609 values_[index] = value;
610 return TraceStorage::CreateRowId(kMetadataTable, index);
611 }
612 // First time setting this key.
613 keys_.push_back(key);
614 values_.push_back(value);
615 uint32_t index = static_cast<uint32_t>(keys_.size() - 1);
616 scalar_indices[key] = index;
617 return TraceStorage::CreateRowId(kMetadataTable, index);
618 }
619
620 RowId AppendMetadata(metadata::KeyIDs key, Variadic value) {
621 PERFETTO_DCHECK(key < metadata::kNumKeys);
622 PERFETTO_DCHECK(metadata::kKeyTypes[key] == metadata::kMulti);
623 PERFETTO_DCHECK(value.type == metadata::kValueTypes[key]);
624
625 keys_.push_back(key);
626 values_.push_back(value);
627 uint32_t index = static_cast<uint32_t>(keys_.size() - 1);
628 return TraceStorage::CreateRowId(kMetadataTable, index);
629 }
630
Isabelle Taylor13a75852019-11-20 10:29:40 +0000631 const Variadic& GetScalarMetadata(metadata::KeyIDs key) const {
632 PERFETTO_DCHECK(scalar_indices.count(key) == 1);
633 return values_.at(scalar_indices.at(key));
634 }
635
636 bool MetadataExists(metadata::KeyIDs key) const {
637 return scalar_indices.count(key) >= 1;
638 }
639
Ryan Savitski0476ee92019-07-09 14:29:33 +0100640 void OverwriteMetadata(uint32_t index, Variadic value) {
641 PERFETTO_DCHECK(index < values_.size());
642 values_[index] = value;
643 }
644
Ryan Savitski51413ad2019-07-09 14:25:21 +0100645 private:
646 std::deque<metadata::KeyIDs> keys_;
647 std::deque<Variadic> values_;
648 // Extraneous state to track locations of entries that should have at most
649 // one row. Used only to maintain uniqueness during insertions.
650 std::map<metadata::KeyIDs, uint32_t> scalar_indices;
651 };
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100652
Oystein Eftevaag5419c582019-08-21 13:58:49 -0700653 class StackProfileFrames {
Florian Mayer438b5ab2019-05-02 11:18:06 +0100654 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100655 struct Row {
656 StringId name_id;
657 int64_t mapping_row;
658 int64_t rel_pc;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100659
Florian Mayerbee52132019-05-02 13:59:56 +0100660 bool operator==(const Row& other) const {
661 return std::tie(name_id, mapping_row, rel_pc) ==
662 std::tie(other.name_id, other.mapping_row, other.rel_pc);
663 }
664 };
665
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100666 uint32_t size() const { return static_cast<uint32_t>(names_.size()); }
667
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +0100668 uint32_t Insert(const Row& row) {
Florian Mayerbee52132019-05-02 13:59:56 +0100669 names_.emplace_back(row.name_id);
670 mappings_.emplace_back(row.mapping_row);
671 rel_pcs_.emplace_back(row.rel_pc);
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100672 symbol_set_ids_.emplace_back(0);
Florian Mayera480cd62019-09-24 10:36:56 +0100673 size_t row_number = names_.size() - 1;
Oystein Eftevaag5a76f102019-11-07 10:18:16 -0800674 index_[std::make_pair(row.mapping_row, row.rel_pc)].emplace_back(
675 row_number);
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +0100676 return static_cast<uint32_t>(row_number);
Florian Mayera480cd62019-09-24 10:36:56 +0100677 }
678
Oystein Eftevaag5a76f102019-11-07 10:18:16 -0800679 std::vector<int64_t> FindFrameRow(size_t mapping_row,
680 uint64_t rel_pc) const {
Florian Mayera480cd62019-09-24 10:36:56 +0100681 auto it = index_.find(std::make_pair(mapping_row, rel_pc));
682 if (it == index_.end())
Oystein Eftevaag5a76f102019-11-07 10:18:16 -0800683 return {};
684 return it->second;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100685 }
686
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100687 void SetSymbolSetId(size_t row_idx, uint32_t symbol_set_id) {
688 PERFETTO_CHECK(row_idx < symbol_set_ids_.size());
689 symbol_set_ids_[row_idx] = symbol_set_id;
Ioannis Ilkose6727552019-08-14 15:10:59 +0100690 }
691
Florian Mayer438b5ab2019-05-02 11:18:06 +0100692 const std::deque<StringId>& names() const { return names_; }
693 const std::deque<int64_t>& mappings() const { return mappings_; }
694 const std::deque<int64_t>& rel_pcs() const { return rel_pcs_; }
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100695 const std::deque<uint32_t>& symbol_set_ids() const {
696 return symbol_set_ids_;
697 }
Florian Mayer438b5ab2019-05-02 11:18:06 +0100698
699 private:
700 std::deque<StringId> names_;
701 std::deque<int64_t> mappings_;
702 std::deque<int64_t> rel_pcs_;
Ioannis Ilkose0b47f52019-09-18 11:14:57 +0100703 std::deque<uint32_t> symbol_set_ids_;
Florian Mayera480cd62019-09-24 10:36:56 +0100704
Oystein Eftevaag5a76f102019-11-07 10:18:16 -0800705 std::map<std::pair<size_t /* mapping row */, uint64_t /* rel_pc */>,
706 std::vector<int64_t>>
Florian Mayera480cd62019-09-24 10:36:56 +0100707 index_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100708 };
709
Oystein Eftevaag5419c582019-08-21 13:58:49 -0700710 class StackProfileMappings {
Florian Mayer438b5ab2019-05-02 11:18:06 +0100711 public:
Florian Mayerbee52132019-05-02 13:59:56 +0100712 struct Row {
713 StringId build_id;
Florian Mayer12655732019-07-02 15:08:26 +0100714 int64_t exact_offset;
715 int64_t start_offset;
Florian Mayerbee52132019-05-02 13:59:56 +0100716 int64_t start;
717 int64_t end;
718 int64_t load_bias;
719 StringId name_id;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100720
Florian Mayerbee52132019-05-02 13:59:56 +0100721 bool operator==(const Row& other) const {
Florian Mayer12655732019-07-02 15:08:26 +0100722 return std::tie(build_id, exact_offset, start_offset, start, end,
723 load_bias, name_id) ==
724 std::tie(other.build_id, other.exact_offset, other.start_offset,
725 other.start, other.end, other.load_bias, other.name_id);
Florian Mayerbee52132019-05-02 13:59:56 +0100726 }
727 };
728
Lalit Maganti9b2d52b2019-05-07 14:32:15 +0100729 uint32_t size() const { return static_cast<uint32_t>(names_.size()); }
730
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +0100731 uint32_t Insert(const Row& row) {
Florian Mayerbee52132019-05-02 13:59:56 +0100732 build_ids_.emplace_back(row.build_id);
Florian Mayer12655732019-07-02 15:08:26 +0100733 exact_offsets_.emplace_back(row.exact_offset);
734 start_offsets_.emplace_back(row.start_offset);
Florian Mayerbee52132019-05-02 13:59:56 +0100735 starts_.emplace_back(row.start);
736 ends_.emplace_back(row.end);
737 load_biases_.emplace_back(row.load_bias);
738 names_.emplace_back(row.name_id);
Florian Mayera480cd62019-09-24 10:36:56 +0100739
740 size_t row_number = build_ids_.size() - 1;
Florian Mayer83202912019-10-11 17:51:08 +0100741 index_[std::make_pair(row.name_id, row.build_id)].emplace_back(
742 row_number);
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +0100743 return static_cast<uint32_t>(row_number);
Florian Mayera480cd62019-09-24 10:36:56 +0100744 }
745
Florian Mayer83202912019-10-11 17:51:08 +0100746 std::vector<int64_t> FindMappingRow(StringId name,
747 StringId build_id) const {
Florian Mayera480cd62019-09-24 10:36:56 +0100748 auto it = index_.find(std::make_pair(name, build_id));
749 if (it == index_.end())
Florian Mayer83202912019-10-11 17:51:08 +0100750 return {};
751 return it->second;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100752 }
753
754 const std::deque<StringId>& build_ids() const { return build_ids_; }
Florian Mayer12655732019-07-02 15:08:26 +0100755 const std::deque<int64_t>& exact_offsets() const { return exact_offsets_; }
756 const std::deque<int64_t>& start_offsets() const { return start_offsets_; }
Florian Mayer438b5ab2019-05-02 11:18:06 +0100757 const std::deque<int64_t>& starts() const { return starts_; }
758 const std::deque<int64_t>& ends() const { return ends_; }
759 const std::deque<int64_t>& load_biases() const { return load_biases_; }
760 const std::deque<StringId>& names() const { return names_; }
761
762 private:
763 std::deque<StringId> build_ids_;
Florian Mayer12655732019-07-02 15:08:26 +0100764 std::deque<int64_t> exact_offsets_;
765 std::deque<int64_t> start_offsets_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100766 std::deque<int64_t> starts_;
767 std::deque<int64_t> ends_;
768 std::deque<int64_t> load_biases_;
769 std::deque<StringId> names_;
Florian Mayera480cd62019-09-24 10:36:56 +0100770
Florian Mayer83202912019-10-11 17:51:08 +0100771 std::map<std::pair<StringId /* name */, StringId /* build id */>,
772 std::vector<int64_t>>
Florian Mayera480cd62019-09-24 10:36:56 +0100773 index_;
Florian Mayer438b5ab2019-05-02 11:18:06 +0100774 };
775
Oystein Eftevaag7f64c102019-08-29 10:27:31 -0700776 class CpuProfileStackSamples {
777 public:
778 struct Row {
779 int64_t timestamp;
780 int64_t callsite_id;
781 UniqueTid utid;
782 };
783
784 uint32_t size() const { return static_cast<uint32_t>(timestamps_.size()); }
785
786 void Insert(const Row& row) {
787 timestamps_.emplace_back(row.timestamp);
788 callsite_ids_.emplace_back(row.callsite_id);
789 utids_.emplace_back(row.utid);
790 }
791
792 const std::deque<int64_t>& timestamps() const { return timestamps_; }
793 const std::deque<int64_t>& callsite_ids() const { return callsite_ids_; }
794 const std::deque<UniqueTid>& utids() const { return utids_; }
795
796 private:
797 std::deque<int64_t> timestamps_;
798 std::deque<int64_t> callsite_ids_;
799 std::deque<UniqueTid> utids_;
800 };
801
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100802 UniqueTid AddEmptyThread(uint32_t tid) {
803 unique_threads_.emplace_back(tid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100804 return static_cast<UniqueTid>(unique_threads_.size() - 1);
805 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100806
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100807 UniquePid AddEmptyProcess(uint32_t pid) {
808 unique_processes_.emplace_back(pid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100809 return static_cast<UniquePid>(unique_processes_.size() - 1);
810 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100811
Isabelle Taylora0a22972018-08-03 12:06:12 +0100812 // Return an unqiue identifier for the contents of each string.
813 // The string is copied internally and can be destroyed after this called.
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100814 // Virtual for testing.
Lalit Maganti5c454312019-04-08 12:11:17 +0100815 virtual StringId InternString(base::StringView str) {
816 return string_pool_.InternString(str);
817 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100818
Isabelle Taylora0a22972018-08-03 12:06:12 +0100819 Process* GetMutableProcess(UniquePid upid) {
Lalit Maganti676658b2018-11-20 18:24:31 +0000820 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100821 return &unique_processes_[upid];
822 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100823
Isabelle Taylora0a22972018-08-03 12:06:12 +0100824 Thread* GetMutableThread(UniqueTid utid) {
Florian Mayera1aaec22018-09-19 17:02:26 +0100825 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100826 return &unique_threads_[utid];
827 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100828
Primiano Tucci0e38a142019-01-07 20:51:09 +0000829 // Example usage: SetStats(stats::android_log_num_failed, 42);
830 void SetStats(size_t key, int64_t value) {
831 PERFETTO_DCHECK(key < stats::kNumKeys);
832 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
833 stats_[key].value = value;
834 }
835
836 // Example usage: IncrementStats(stats::android_log_num_failed, -1);
837 void IncrementStats(size_t key, int64_t increment = 1) {
838 PERFETTO_DCHECK(key < stats::kNumKeys);
839 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
840 stats_[key].value += increment;
841 }
842
Florian Mayer438b5ab2019-05-02 11:18:06 +0100843 // Example usage: IncrementIndexedStats(stats::cpu_failure, 1);
844 void IncrementIndexedStats(size_t key, int index, int64_t increment = 1) {
845 PERFETTO_DCHECK(key < stats::kNumKeys);
846 PERFETTO_DCHECK(stats::kTypes[key] == stats::kIndexed);
847 stats_[key].indexed_values[index] += increment;
848 }
849
Primiano Tucci0e38a142019-01-07 20:51:09 +0000850 // Example usage: SetIndexedStats(stats::cpu_failure, 1, 42);
851 void SetIndexedStats(size_t key, int index, int64_t value) {
852 PERFETTO_DCHECK(key < stats::kNumKeys);
853 PERFETTO_DCHECK(stats::kTypes[key] == stats::kIndexed);
854 stats_[key].indexed_values[index] = value;
855 }
856
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100857 // Example usage:
858 // SetMetadata(metadata::benchmark_name,
859 // Variadic::String(storage->InternString("foo"));
Ryan Savitski51413ad2019-07-09 14:25:21 +0100860 // Returns the RowId of the new entry.
Mikhail Khokhlovb1fe42a2019-05-23 13:58:05 +0100861 // Virtual for testing.
Ryan Savitski51413ad2019-07-09 14:25:21 +0100862 virtual RowId SetMetadata(metadata::KeyIDs key, Variadic value) {
863 return metadata_.SetScalarMetadata(key, value);
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100864 }
865
866 // Example usage:
867 // AppendMetadata(metadata::benchmark_story_tags,
868 // Variadic::String(storage->InternString("bar"));
Ryan Savitski51413ad2019-07-09 14:25:21 +0100869 // Returns the RowId of the new entry.
Mikhail Khokhlovb1fe42a2019-05-23 13:58:05 +0100870 // Virtual for testing.
Ryan Savitski51413ad2019-07-09 14:25:21 +0100871 virtual RowId AppendMetadata(metadata::KeyIDs key, Variadic value) {
872 return metadata_.AppendMetadata(key, value);
Mikhail Khokhlove466c002019-05-23 13:33:33 +0100873 }
874
Eric Seckler77b52782019-05-02 15:18:57 +0100875 class ScopedStatsTracer {
876 public:
877 ScopedStatsTracer(TraceStorage* storage, size_t key)
878 : storage_(storage), key_(key), start_ns_(base::GetWallTimeNs()) {}
879
880 ~ScopedStatsTracer() {
881 if (!storage_)
882 return;
883 auto delta_ns = base::GetWallTimeNs() - start_ns_;
884 storage_->IncrementStats(key_, delta_ns.count());
885 }
886
887 ScopedStatsTracer(ScopedStatsTracer&& other) noexcept { MoveImpl(&other); }
888
889 ScopedStatsTracer& operator=(ScopedStatsTracer&& other) {
890 MoveImpl(&other);
891 return *this;
892 }
893
894 private:
895 ScopedStatsTracer(const ScopedStatsTracer&) = delete;
896 ScopedStatsTracer& operator=(const ScopedStatsTracer&) = delete;
897
898 void MoveImpl(ScopedStatsTracer* other) {
899 storage_ = other->storage_;
900 key_ = other->key_;
901 start_ns_ = other->start_ns_;
902 other->storage_ = nullptr;
903 }
904
905 TraceStorage* storage_;
906 size_t key_;
907 base::TimeNanos start_ns_;
908 };
909
910 ScopedStatsTracer TraceExecutionTimeIntoStats(size_t key) {
911 return ScopedStatsTracer(this, key);
912 }
913
Lalit Maganticaed37e2018-06-01 03:03:08 +0100914 // Reading methods.
Eric Secklerc93823e2019-06-03 16:49:19 +0100915 // Virtual for testing.
916 virtual NullTermStringView GetString(StringId id) const {
Lalit Maganti5c454312019-04-08 12:11:17 +0100917 return string_pool_.Get(id);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100918 }
919
Lalit Magantie9d40532018-06-29 13:15:06 +0100920 const Process& GetProcess(UniquePid upid) const {
Lalit Maganti676658b2018-11-20 18:24:31 +0000921 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100922 return unique_processes_[upid];
923 }
924
Eric Secklerb32cacf2019-09-27 16:51:19 +0100925 // Virtual for testing.
926 virtual const Thread& GetThread(UniqueTid utid) const {
Lalit Maganti1f64cfa2018-09-18 13:20:02 +0100927 // Allow utid == 0 for idle thread retrieval.
Florian Mayera1aaec22018-09-19 17:02:26 +0100928 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylor68e42192018-06-19 16:19:31 +0100929 return unique_threads_[utid];
930 }
931
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000932 static RowId CreateRowId(TableId table, uint32_t row) {
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000933 return (static_cast<RowId>(table) << kRowIdTableShift) | row;
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000934 }
935
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000936 static std::pair<int8_t /*table*/, uint32_t /*row*/> ParseRowId(RowId rowid) {
937 auto id = static_cast<uint64_t>(rowid);
938 auto table_id = static_cast<uint8_t>(id >> kRowIdTableShift);
939 auto row = static_cast<uint32_t>(id & ((1ull << kRowIdTableShift) - 1));
940 return std::make_pair(table_id, row);
941 }
942
Lalit Magantiac68e9c2019-09-09 18:12:15 +0100943 const tables::TrackTable& track_table() const { return track_table_; }
944 tables::TrackTable* mutable_track_table() { return &track_table_; }
Lalit Magantid11d3e02019-07-26 12:32:09 +0530945
Lalit Maganti53bdbb22019-09-25 11:11:18 +0100946 const tables::ProcessTrackTable& process_track_table() const {
947 return process_track_table_;
Lalit Maganti4ea78d92019-09-20 20:20:41 +0100948 }
Lalit Maganti53bdbb22019-09-25 11:11:18 +0100949 tables::ProcessTrackTable* mutable_process_track_table() {
950 return &process_track_table_;
Lalit Maganti4ea78d92019-09-20 20:20:41 +0100951 }
Eric Seckler5703ede2019-07-10 10:13:02 +0100952
Lalit Magantifedc15b2019-09-26 18:37:52 +0100953 const tables::ThreadTrackTable& thread_track_table() const {
954 return thread_track_table_;
955 }
956 tables::ThreadTrackTable* mutable_thread_track_table() {
957 return &thread_track_table_;
958 }
959
Lalit Maganti809b2f92019-11-07 13:27:26 +0000960 const tables::CounterTrackTable& counter_track_table() const {
961 return counter_track_table_;
962 }
963 tables::CounterTrackTable* mutable_counter_track_table() {
964 return &counter_track_table_;
965 }
966
967 const tables::ThreadCounterTrackTable& thread_counter_track_table() const {
968 return thread_counter_track_table_;
969 }
970 tables::ThreadCounterTrackTable* mutable_thread_counter_track_table() {
971 return &thread_counter_track_table_;
972 }
973
974 const tables::ProcessCounterTrackTable& process_counter_track_table() const {
975 return process_counter_track_table_;
976 }
977 tables::ProcessCounterTrackTable* mutable_process_counter_track_table() {
978 return &process_counter_track_table_;
979 }
980
981 const tables::CpuCounterTrackTable& cpu_counter_track_table() const {
982 return cpu_counter_track_table_;
983 }
984 tables::CpuCounterTrackTable* mutable_cpu_counter_track_table() {
985 return &cpu_counter_track_table_;
986 }
987
988 const tables::IrqCounterTrackTable& irq_counter_track_table() const {
989 return irq_counter_track_table_;
990 }
991 tables::IrqCounterTrackTable* mutable_irq_counter_track_table() {
992 return &irq_counter_track_table_;
993 }
994
995 const tables::SoftirqCounterTrackTable& softirq_counter_track_table() const {
996 return softirq_counter_track_table_;
997 }
998 tables::SoftirqCounterTrackTable* mutable_softirq_counter_track_table() {
999 return &softirq_counter_track_table_;
1000 }
1001
1002 const tables::GpuCounterTrackTable& gpu_counter_track_table() const {
1003 return gpu_counter_track_table_;
1004 }
1005 tables::GpuCounterTrackTable* mutable_gpu_counter_track_table() {
1006 return &gpu_counter_track_table_;
1007 }
1008
Lalit Magantiff69c112018-09-24 12:07:47 +01001009 const Slices& slices() const { return slices_; }
Lalit Magantifde29042018-10-04 13:28:52 +01001010 Slices* mutable_slices() { return &slices_; }
1011
Lalit Maganti1308e3f2019-12-09 20:24:20 +00001012 const tables::SliceTable& slice_table() const { return slice_table_; }
1013 tables::SliceTable* mutable_slice_table() { return &slice_table_; }
Primiano Tucci0d72a312018-08-07 14:42:45 +01001014
Eric Secklerd3b89d52019-07-10 15:36:29 +01001015 const ThreadSlices& thread_slices() const { return thread_slices_; }
1016 ThreadSlices* mutable_thread_slices() { return &thread_slices_; }
1017
Eric Secklerc3430c62019-07-22 10:49:58 +01001018 const VirtualTrackSlices& virtual_track_slices() const {
1019 return virtual_track_slices_;
1020 }
1021 VirtualTrackSlices* mutable_virtual_track_slices() {
1022 return &virtual_track_slices_;
1023 }
1024
Lalit Maganti20539c22019-09-04 12:36:10 +01001025 const tables::GpuSliceTable& gpu_slice_table() const {
1026 return gpu_slice_table_;
1027 }
1028 tables::GpuSliceTable* mutable_gpu_slice_table() { return &gpu_slice_table_; }
Mikael Pessa7160ccc2019-07-25 11:19:26 -07001029
Lalit Maganti4b3b3ad2019-12-04 19:27:35 +00001030 const tables::CounterTable& counter_table() const { return counter_table_; }
1031 tables::CounterTable* mutable_counter_table() { return &counter_table_; }
Isabelle Taylor14674d42018-09-07 11:33:11 +01001032
Primiano Tucci5cb84f82018-10-31 21:46:36 -07001033 const SqlStats& sql_stats() const { return sql_stats_; }
1034 SqlStats* mutable_sql_stats() { return &sql_stats_; }
1035
Isabelle Taylorc8c11202018-11-05 11:36:22 +00001036 const Instants& instants() const { return instants_; }
1037 Instants* mutable_instants() { return &instants_; }
1038
Primiano Tucci2c761ef2019-01-07 20:20:46 +00001039 const AndroidLogs& android_logs() const { return android_log_; }
1040 AndroidLogs* mutable_android_log() { return &android_log_; }
1041
Primiano Tucci0e38a142019-01-07 20:51:09 +00001042 const StatsMap& stats() const { return stats_; }
Lalit Maganti05e8c132018-11-09 18:16:12 +00001043
Ryan Savitski51413ad2019-07-09 14:25:21 +01001044 const Metadata& metadata() const { return metadata_; }
Ryan Savitski0476ee92019-07-09 14:29:33 +01001045 Metadata* mutable_metadata() { return &metadata_; }
Mikhail Khokhlove466c002019-05-23 13:33:33 +01001046
Lalit Maganti6e9c55e2018-11-29 12:00:39 +00001047 const Args& args() const { return args_; }
1048 Args* mutable_args() { return &args_; }
1049
Lalit Maganti1d915a62019-01-07 12:10:42 +00001050 const RawEvents& raw_events() const { return raw_events_; }
1051 RawEvents* mutable_raw_events() { return &raw_events_; }
1052
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001053 const StackProfileMappings& stack_profile_mappings() const {
1054 return stack_profile_mappings_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001055 }
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001056 StackProfileMappings* mutable_stack_profile_mappings() {
1057 return &stack_profile_mappings_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001058 }
1059
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001060 const StackProfileFrames& stack_profile_frames() const {
1061 return stack_profile_frames_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001062 }
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001063 StackProfileFrames* mutable_stack_profile_frames() {
1064 return &stack_profile_frames_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001065 }
1066
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +01001067 const tables::StackProfileCallsiteTable& stack_profile_callsite_table()
1068 const {
1069 return stack_profile_callsite_table_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001070 }
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +01001071 tables::StackProfileCallsiteTable* mutable_stack_profile_callsite_table() {
1072 return &stack_profile_callsite_table_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001073 }
1074
Lalit Magantia5ffb202019-12-17 18:10:52 +00001075 const tables::HeapProfileAllocationTable& heap_profile_allocation_table()
1076 const {
1077 return heap_profile_allocation_table_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001078 }
Lalit Magantia5ffb202019-12-17 18:10:52 +00001079 tables::HeapProfileAllocationTable* mutable_heap_profile_allocation_table() {
1080 return &heap_profile_allocation_table_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001081 }
Oystein Eftevaag7f64c102019-08-29 10:27:31 -07001082 const CpuProfileStackSamples& cpu_profile_stack_samples() const {
1083 return cpu_profile_stack_samples_;
1084 }
1085 CpuProfileStackSamples* mutable_cpu_profile_stack_samples() {
1086 return &cpu_profile_stack_samples_;
1087 }
Florian Mayer438b5ab2019-05-02 11:18:06 +01001088
Ioannis Ilkose0b47f52019-09-18 11:14:57 +01001089 const tables::SymbolTable& symbol_table() const { return symbol_table_; }
1090
1091 tables::SymbolTable* mutable_symbol_table() { return &symbol_table_; }
1092
Florian Mayer25e013e2019-10-01 14:06:15 +01001093 const tables::HeapGraphObjectTable& heap_graph_object_table() const {
1094 return heap_graph_object_table_;
1095 }
1096
1097 tables::HeapGraphObjectTable* mutable_heap_graph_object_table() {
1098 return &heap_graph_object_table_;
1099 }
1100
Florian Mayer9c01d162019-10-09 17:55:32 +01001101 const tables::HeapGraphReferenceTable& heap_graph_reference_table() const {
1102 return heap_graph_reference_table_;
1103 }
1104
1105 tables::HeapGraphReferenceTable* mutable_heap_graph_reference_table() {
1106 return &heap_graph_reference_table_;
1107 }
1108
Lalit Maganti20539c22019-09-04 12:36:10 +01001109 const tables::GpuTrackTable& gpu_track_table() const {
1110 return gpu_track_table_;
1111 }
1112 tables::GpuTrackTable* mutable_gpu_track_table() { return &gpu_track_table_; }
Mikael Pessa7160ccc2019-07-25 11:19:26 -07001113
Mohammad Reza Zakerinasabb06d1852019-09-11 14:41:36 -04001114 const tables::VulkanMemoryAllocationsTable& vulkan_memory_allocations_table()
1115 const {
1116 return vulkan_memory_allocations_table_;
1117 }
1118
1119 tables::VulkanMemoryAllocationsTable*
1120 mutable_vulkan_memory_allocations_table() {
1121 return &vulkan_memory_allocations_table_;
1122 }
1123
Lalit Maganti5c454312019-04-08 12:11:17 +01001124 const StringPool& string_pool() const { return string_pool_; }
Lalit Magantiacda68b2018-10-29 15:23:25 +00001125
Hector Dearman5145e502019-09-18 16:52:24 +01001126 // |unique_processes_| always contains at least 1 element because the 0th ID
Isabelle Taylore7003fb2018-07-17 11:39:01 +01001127 // is reserved to indicate an invalid process.
Lalit Maganti9c6395b2019-01-17 00:25:09 +00001128 size_t process_count() const { return unique_processes_.size(); }
Primiano Tucci0d72a312018-08-07 14:42:45 +01001129
Hector Dearman5145e502019-09-18 16:52:24 +01001130 // |unique_threads_| always contains at least 1 element because the 0th ID
Isabelle Taylore7003fb2018-07-17 11:39:01 +01001131 // is reserved to indicate an invalid thread.
Lalit Maganti9c6395b2019-01-17 00:25:09 +00001132 size_t thread_count() const { return unique_threads_.size(); }
Isabelle Taylore7003fb2018-07-17 11:39:01 +01001133
Hector Dearman12323362018-08-09 16:09:28 +01001134 // Number of interned strings in the pool. Includes the empty string w/ ID=0.
1135 size_t string_count() const { return string_pool_.size(); }
1136
Ioannis Ilkosb8b11102019-01-29 17:56:55 +00001137 // Start / end ts (in nanoseconds) across the parsed trace events.
1138 // Returns (0, 0) if the trace is empty.
1139 std::pair<int64_t, int64_t> GetTraceTimestampBoundsNs() const;
1140
Lalit Maganticaed37e2018-06-01 03:03:08 +01001141 private:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +00001142 static constexpr uint8_t kRowIdTableShift = 32;
Isabelle Taylora0a22972018-08-03 12:06:12 +01001143
Primiano Tucci2da5d2e2018-08-10 14:23:31 +01001144 using StringHash = uint64_t;
Lalit Maganticaed37e2018-06-01 03:03:08 +01001145
Lalit Maganti5c454312019-04-08 12:11:17 +01001146 TraceStorage(const TraceStorage&) = delete;
1147 TraceStorage& operator=(const TraceStorage&) = delete;
1148
Lalit Maganti20539c22019-09-04 12:36:10 +01001149 TraceStorage(TraceStorage&&) = delete;
1150 TraceStorage& operator=(TraceStorage&&) = delete;
1151
1152 // One entry for each unique string in the trace.
1153 StringPool string_pool_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +00001154
Lalit Maganti05e8c132018-11-09 18:16:12 +00001155 // Stats about parsing the trace.
Primiano Tucci0e38a142019-01-07 20:51:09 +00001156 StatsMap stats_{};
Lalit Maganti35622b72018-06-06 12:03:11 +01001157
Ryan Savitski51413ad2019-07-09 14:25:21 +01001158 // Extra data extracted from the trace. Includes:
1159 // * metadata from chrome and benchmarking infrastructure
1160 // * descriptions of android packages
1161 Metadata metadata_{};
Mikhail Khokhlove466c002019-05-23 13:33:33 +01001162
Lalit Magantid11d3e02019-07-26 12:32:09 +05301163 // Metadata for tracks.
Lalit Magantiac68e9c2019-09-09 18:12:15 +01001164 tables::TrackTable track_table_{&string_pool_, nullptr};
Lalit Maganti4ea78d92019-09-20 20:20:41 +01001165 tables::GpuTrackTable gpu_track_table_{&string_pool_, &track_table_};
Lalit Maganti53bdbb22019-09-25 11:11:18 +01001166 tables::ProcessTrackTable process_track_table_{&string_pool_, &track_table_};
Lalit Magantifedc15b2019-09-26 18:37:52 +01001167 tables::ThreadTrackTable thread_track_table_{&string_pool_, &track_table_};
Eric Seckler5703ede2019-07-10 10:13:02 +01001168
Lalit Maganti809b2f92019-11-07 13:27:26 +00001169 // Track tables for counter events.
1170 tables::CounterTrackTable counter_track_table_{&string_pool_, &track_table_};
1171 tables::ThreadCounterTrackTable thread_counter_track_table_{
1172 &string_pool_, &counter_track_table_};
1173 tables::ProcessCounterTrackTable process_counter_track_table_{
1174 &string_pool_, &counter_track_table_};
1175 tables::CpuCounterTrackTable cpu_counter_track_table_{&string_pool_,
1176 &counter_track_table_};
1177 tables::IrqCounterTrackTable irq_counter_track_table_{&string_pool_,
1178 &counter_track_table_};
1179 tables::SoftirqCounterTrackTable softirq_counter_track_table_{
1180 &string_pool_, &counter_track_table_};
1181 tables::GpuCounterTrackTable gpu_counter_track_table_{&string_pool_,
1182 &counter_track_table_};
1183
Mikael Pessa803090c2019-08-23 16:03:34 -07001184 // Metadata for gpu tracks.
Mikael Pessa803090c2019-08-23 16:03:34 -07001185 GpuContexts gpu_contexts_;
1186
Lalit Maganticaed37e2018-06-01 03:03:08 +01001187 // One entry for each CPU in the trace.
Lalit Magantiff69c112018-09-24 12:07:47 +01001188 Slices slices_;
Lalit Maganticaed37e2018-06-01 03:03:08 +01001189
Lalit Maganti6e9c55e2018-11-29 12:00:39 +00001190 // Args for all other tables.
1191 Args args_;
1192
Isabelle Taylor47328cf2018-06-12 14:33:59 +01001193 // One entry for each UniquePid, with UniquePid as the index.
Ioannis Ilkos9c03cbd2019-03-12 18:30:43 +00001194 // Never hold on to pointers to Process, as vector resize will
1195 // invalidate them.
1196 std::vector<Process> unique_processes_;
Isabelle Taylor68e42192018-06-19 16:19:31 +01001197
Isabelle Taylor68e42192018-06-19 16:19:31 +01001198 // One entry for each UniqueTid, with UniqueTid as the index.
Isabelle Taylor3dd366c2018-06-22 16:21:41 +01001199 std::deque<Thread> unique_threads_;
Primiano Tucci0d72a312018-08-07 14:42:45 +01001200
1201 // Slices coming from userspace events (e.g. Chromium TRACE_EVENT macros).
Lalit Maganti1308e3f2019-12-09 20:24:20 +00001202 tables::SliceTable slice_table_{&string_pool_, nullptr};
Isabelle Taylor15314ea2018-09-19 11:35:19 +01001203
Eric Secklerd3b89d52019-07-10 15:36:29 +01001204 // Additional attributes for threads slices (sub-type of NestableSlices).
1205 ThreadSlices thread_slices_;
1206
Eric Secklerc3430c62019-07-22 10:49:58 +01001207 // Additional attributes for virtual track slices (sub-type of
1208 // NestableSlices).
1209 VirtualTrackSlices virtual_track_slices_;
1210
Mikael Pessa803090c2019-08-23 16:03:34 -07001211 // Additional attributes for gpu track slices (sub-type of
1212 // NestableSlices).
Lalit Maganti20539c22019-09-04 12:36:10 +01001213 tables::GpuSliceTable gpu_slice_table_{&string_pool_, nullptr};
Mikael Pessa803090c2019-08-23 16:03:34 -07001214
Lalit Maganti8320e6d2019-03-14 18:49:33 +00001215 // The values from the Counter events from the trace. This includes CPU
1216 // frequency events as well systrace trace_marker counter events.
Lalit Maganti4b3b3ad2019-12-04 19:27:35 +00001217 tables::CounterTable counter_table_{&string_pool_, nullptr};
Primiano Tucci5cb84f82018-10-31 21:46:36 -07001218
1219 SqlStats sql_stats_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +00001220
Isabelle Taylorc8c11202018-11-05 11:36:22 +00001221 // These are instantaneous events in the trace. They have no duration
1222 // and do not have a value that make sense to track over time.
1223 // e.g. signal events
1224 Instants instants_;
Lalit Maganti1d915a62019-01-07 12:10:42 +00001225
1226 // Raw events are every ftrace event in the trace. The raw event includes
1227 // the timestamp and the pid. The args for the raw event will be in the
1228 // args table. This table can be used to generate a text version of the
1229 // trace.
1230 RawEvents raw_events_;
Primiano Tucci2c761ef2019-01-07 20:20:46 +00001231 AndroidLogs android_log_;
Florian Mayer438b5ab2019-05-02 11:18:06 +01001232
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001233 StackProfileMappings stack_profile_mappings_;
1234 StackProfileFrames stack_profile_frames_;
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +01001235 tables::StackProfileCallsiteTable stack_profile_callsite_table_{&string_pool_,
1236 nullptr};
Lalit Magantia5ffb202019-12-17 18:10:52 +00001237 tables::HeapProfileAllocationTable heap_profile_allocation_table_{
1238 &string_pool_, nullptr};
Oystein Eftevaag7f64c102019-08-29 10:27:31 -07001239 CpuProfileStackSamples cpu_profile_stack_samples_;
Ioannis Ilkose0b47f52019-09-18 11:14:57 +01001240
1241 // Symbol tables (mappings from frames to symbol names)
1242 tables::SymbolTable symbol_table_{&string_pool_, nullptr};
Florian Mayer25e013e2019-10-01 14:06:15 +01001243 tables::HeapGraphObjectTable heap_graph_object_table_{&string_pool_, nullptr};
Florian Mayer9c01d162019-10-09 17:55:32 +01001244 tables::HeapGraphReferenceTable heap_graph_reference_table_{&string_pool_,
1245 nullptr};
Mohammad Reza Zakerinasabb06d1852019-09-11 14:41:36 -04001246
1247 tables::VulkanMemoryAllocationsTable vulkan_memory_allocations_table_{
1248 &string_pool_, nullptr};
Lalit Maganticaed37e2018-06-01 03:03:08 +01001249};
1250
1251} // namespace trace_processor
1252} // namespace perfetto
1253
Florian Mayerbee52132019-05-02 13:59:56 +01001254namespace std {
1255
1256template <>
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001257struct hash<
1258 ::perfetto::trace_processor::TraceStorage::StackProfileFrames::Row> {
Florian Mayerbee52132019-05-02 13:59:56 +01001259 using argument_type =
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001260 ::perfetto::trace_processor::TraceStorage::StackProfileFrames::Row;
Florian Mayerbee52132019-05-02 13:59:56 +01001261 using result_type = size_t;
1262
1263 result_type operator()(const argument_type& r) const {
1264 return std::hash<::perfetto::trace_processor::StringId>{}(r.name_id) ^
1265 std::hash<int64_t>{}(r.mapping_row) ^ std::hash<int64_t>{}(r.rel_pc);
1266 }
1267};
1268
1269template <>
1270struct hash<
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +01001271 ::perfetto::trace_processor::tables::StackProfileCallsiteTable::Row> {
Florian Mayerbee52132019-05-02 13:59:56 +01001272 using argument_type =
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +01001273 ::perfetto::trace_processor::tables::StackProfileCallsiteTable::Row;
Florian Mayerbee52132019-05-02 13:59:56 +01001274 using result_type = size_t;
1275
1276 result_type operator()(const argument_type& r) const {
1277 return std::hash<int64_t>{}(r.depth) ^ std::hash<int64_t>{}(r.parent_id) ^
Lalit Magantiaa0ff5b2019-10-25 10:35:48 +01001278 std::hash<int64_t>{}(r.frame_id);
Florian Mayerbee52132019-05-02 13:59:56 +01001279 }
1280};
1281
1282template <>
1283struct hash<
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001284 ::perfetto::trace_processor::TraceStorage::StackProfileMappings::Row> {
Florian Mayerbee52132019-05-02 13:59:56 +01001285 using argument_type =
Oystein Eftevaag5419c582019-08-21 13:58:49 -07001286 ::perfetto::trace_processor::TraceStorage::StackProfileMappings::Row;
Florian Mayerbee52132019-05-02 13:59:56 +01001287 using result_type = size_t;
1288
1289 result_type operator()(const argument_type& r) const {
1290 return std::hash<::perfetto::trace_processor::StringId>{}(r.build_id) ^
Florian Mayer12655732019-07-02 15:08:26 +01001291 std::hash<int64_t>{}(r.exact_offset) ^
1292 std::hash<int64_t>{}(r.start_offset) ^
1293 std::hash<int64_t>{}(r.start) ^ std::hash<int64_t>{}(r.end) ^
1294 std::hash<int64_t>{}(r.load_bias) ^
Florian Mayerbee52132019-05-02 13:59:56 +01001295 std::hash<::perfetto::trace_processor::StringId>{}(r.name_id);
1296 }
1297};
1298
1299} // namespace std
1300
Lalit Maganticaed37e2018-06-01 03:03:08 +01001301#endif // SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_