blob: f6f687a160680a219763200be3de4a6ab4cd41b5 [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 Maganti1f464742019-02-28 13:49:31 +000028#include "perfetto/base/hash.h"
Lalit Maganti35622b72018-06-06 12:03:11 +010029#include "perfetto/base/logging.h"
Lalit Maganti770886a2018-11-16 17:40:21 +000030#include "perfetto/base/optional.h"
Primiano Tucci2da5d2e2018-08-10 14:23:31 +010031#include "perfetto/base/string_view.h"
Hector Dearmanc8339932018-08-10 11:22:46 +010032#include "perfetto/base/utils.h"
Lalit Magantib0b53ee2019-01-24 17:53:39 +000033#include "src/trace_processor/ftrace_utils.h"
Primiano Tucci0e38a142019-01-07 20:51:09 +000034#include "src/trace_processor/stats.h"
Lalit Maganti5c454312019-04-08 12:11:17 +010035#include "src/trace_processor/string_pool.h"
Lalit Maganti35622b72018-06-06 12:03:11 +010036
Lalit Maganticaed37e2018-06-01 03:03:08 +010037namespace perfetto {
38namespace trace_processor {
39
Isabelle Taylora0a22972018-08-03 12:06:12 +010040// UniquePid is an offset into |unique_processes_|. This is necessary because
41// Unix pids are reused and thus not guaranteed to be unique over a long
42// period of time.
43using UniquePid = uint32_t;
Primiano Tucci0d72a312018-08-07 14:42:45 +010044
Isabelle Taylora0a22972018-08-03 12:06:12 +010045// UniqueTid is an offset into |unique_threads_|. Necessary because tids can
46// be reused.
47using UniqueTid = uint32_t;
48
Primiano Tucci0d72a312018-08-07 14:42:45 +010049// StringId is an offset into |string_pool_|.
Lalit Maganti5c454312019-04-08 12:11:17 +010050using StringId = StringPool::Id;
Primiano Tucci0d72a312018-08-07 14:42:45 +010051
Lalit Maganti5ea9e932018-11-30 14:19:39 +000052// Identifiers for all the tables in the database.
53enum TableId : uint8_t {
54 // Intentionally don't have TableId == 0 so that RowId == 0 can refer to an
55 // invalid row id.
Lalit Maganti8320e6d2019-03-14 18:49:33 +000056 kCounterValues = 1,
Lalit Maganti1d915a62019-01-07 12:10:42 +000057 kRawEvents = 2,
Lalit Maganti66ed7ad2019-01-11 16:47:26 +000058 kInstants = 3,
Isabelle Taylorb9222c32019-01-31 10:58:37 +000059 kSched = 4,
Lalit Maganti5ea9e932018-11-30 14:19:39 +000060};
61
62// The top 8 bits are set to the TableId and the bottom 32 to the row of the
63// table.
Lalit Maganti85ca4a82018-12-07 17:28:02 +000064using RowId = int64_t;
Lalit Maganti5ea9e932018-11-30 14:19:39 +000065static const RowId kInvalidRowId = 0;
66
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +000067using ArgSetId = uint32_t;
68static const ArgSetId kInvalidArgSetId = 0;
69
Isabelle Taylora97c5f52018-10-23 17:36:12 +010070enum RefType {
Primiano Tucci5403e4f2018-11-27 10:07:03 +000071 kRefNoRef = 0,
72 kRefUtid = 1,
73 kRefCpuId = 2,
74 kRefIrq = 3,
75 kRefSoftIrq = 4,
76 kRefUpid = 5,
Primiano Tucci5403e4f2018-11-27 10:07:03 +000077 kRefMax
Isabelle Taylora97c5f52018-10-23 17:36:12 +010078};
Isabelle Taylor14674d42018-09-07 11:33:11 +010079
Eric Seckler972225e2019-04-18 11:07:12 +010080const std::vector<const char*>& GetRefTypeStringMap();
81
Lalit Maganticaed37e2018-06-01 03:03:08 +010082// Stores a data inside a trace file in a columnar form. This makes it efficient
83// to read or search across a single field of the trace (e.g. all the thread
84// names for a given CPU).
85class TraceStorage {
86 public:
Isabelle Taylor47328cf2018-06-12 14:33:59 +010087 TraceStorage();
Isabelle Taylora0a22972018-08-03 12:06:12 +010088
89 virtual ~TraceStorage();
Isabelle Taylor47328cf2018-06-12 14:33:59 +010090
Isabelle Taylora0a22972018-08-03 12:06:12 +010091 // Information about a unique process seen in a trace.
92 struct Process {
Primiano Tuccib75dcee2018-08-08 12:21:36 +010093 explicit Process(uint32_t p) : pid(p) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +000094 int64_t start_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +010095 StringId name_id = 0;
Primiano Tuccib75dcee2018-08-08 12:21:36 +010096 uint32_t pid = 0;
Lalit Maganti08884242019-02-19 12:28:32 +000097 base::Optional<UniquePid> pupid;
Isabelle Taylora0a22972018-08-03 12:06:12 +010098 };
99
100 // Information about a unique thread seen in a trace.
101 struct Thread {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100102 explicit Thread(uint32_t t) : tid(t) {}
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000103 int64_t start_ns = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100104 StringId name_id = 0;
Lalit Maganti770886a2018-11-16 17:40:21 +0000105 base::Optional<UniquePid> upid;
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100106 uint32_t tid = 0;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100107 };
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100108
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000109 // Generic key value storage which can be referenced by other tables.
110 class Args {
111 public:
Lalit Maganti1d915a62019-01-07 12:10:42 +0000112 // Variadic type representing the possible values for the args table.
113 struct Variadic {
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000114 enum Type { kInt, kString, kReal };
115
Lalit Maganti1d915a62019-01-07 12:10:42 +0000116 static Variadic Integer(int64_t int_value) {
117 Variadic variadic;
118 variadic.type = Type::kInt;
119 variadic.int_value = int_value;
120 return variadic;
121 }
122
123 static Variadic String(StringId string_id) {
124 Variadic variadic;
125 variadic.type = Type::kString;
126 variadic.string_value = string_id;
127 return variadic;
128 }
129
130 static Variadic Real(double real_value) {
131 Variadic variadic;
132 variadic.type = Type::kReal;
133 variadic.real_value = real_value;
134 return variadic;
135 }
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000136
137 Type type;
138 union {
139 int64_t int_value;
140 StringId string_value;
141 double real_value;
142 };
143 };
144
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000145 struct Arg {
146 StringId flat_key = 0;
147 StringId key = 0;
148 Variadic value = Variadic::Integer(0);
149
150 // This is only used by the arg tracker and so is not part of the hash.
151 RowId row_id = 0;
152 };
153
154 struct ArgHasher {
155 uint64_t operator()(const Arg& arg) const noexcept {
Lalit Maganti1f464742019-02-28 13:49:31 +0000156 base::Hash hash;
157 hash.Update(arg.key);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000158 // We don't hash arg.flat_key because it's a subsequence of arg.key.
159 switch (arg.value.type) {
160 case Variadic::Type::kInt:
Lalit Maganti1f464742019-02-28 13:49:31 +0000161 hash.Update(arg.value.int_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000162 break;
163 case Variadic::Type::kString:
Lalit Maganti1f464742019-02-28 13:49:31 +0000164 hash.Update(arg.value.string_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000165 break;
166 case Variadic::Type::kReal:
Lalit Maganti1f464742019-02-28 13:49:31 +0000167 hash.Update(arg.value.real_value);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000168 break;
169 }
Lalit Maganti1f464742019-02-28 13:49:31 +0000170 return hash.digest();
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000171 }
172 };
173
174 const std::deque<ArgSetId>& set_ids() const { return set_ids_; }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000175 const std::deque<StringId>& flat_keys() const { return flat_keys_; }
176 const std::deque<StringId>& keys() const { return keys_; }
Lalit Maganti1d915a62019-01-07 12:10:42 +0000177 const std::deque<Variadic>& arg_values() const { return arg_values_; }
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000178 uint32_t args_count() const {
179 return static_cast<uint32_t>(set_ids_.size());
Lalit Maganti79472be2018-12-04 13:41:27 +0000180 }
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000181
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000182 ArgSetId AddArgSet(const std::vector<Arg>& args,
183 uint32_t begin,
184 uint32_t end) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000185 base::Hash hash;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000186 for (uint32_t i = begin; i < end; i++) {
Lalit Maganti1f464742019-02-28 13:49:31 +0000187 hash.Update(ArgHasher()(args[i]));
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000188 }
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000189
Lalit Maganti1f464742019-02-28 13:49:31 +0000190 ArgSetHash digest = hash.digest();
191 auto it = arg_row_for_hash_.find(digest);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000192 if (it != arg_row_for_hash_.end()) {
193 return set_ids_[it->second];
194 }
195
196 // The +1 ensures that nothing has an id == kInvalidArgSetId == 0.
197 ArgSetId id = static_cast<uint32_t>(arg_row_for_hash_.size()) + 1;
Lalit Maganti1f464742019-02-28 13:49:31 +0000198 arg_row_for_hash_.emplace(digest, args_count());
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000199 for (uint32_t i = begin; i < end; i++) {
200 const auto& arg = args[i];
201 set_ids_.emplace_back(id);
202 flat_keys_.emplace_back(arg.flat_key);
203 keys_.emplace_back(arg.key);
204 arg_values_.emplace_back(arg.value);
205 }
206 return id;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000207 }
208
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000209 private:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000210 using ArgSetHash = uint64_t;
211
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000212 std::deque<ArgSetId> set_ids_;
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000213 std::deque<StringId> flat_keys_;
214 std::deque<StringId> keys_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000215 std::deque<Variadic> arg_values_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000216
217 std::unordered_map<ArgSetHash, uint32_t> arg_row_for_hash_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000218 };
219
Lalit Magantiff69c112018-09-24 12:07:47 +0100220 class Slices {
Lalit Maganti35622b72018-06-06 12:03:11 +0100221 public:
Lalit Magantifde29042018-10-04 13:28:52 +0100222 inline size_t AddSlice(uint32_t cpu,
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000223 int64_t start_ns,
224 int64_t duration_ns,
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000225 UniqueTid utid,
226 ftrace_utils::TaskState end_state,
227 int32_t priority) {
Lalit Magantiff69c112018-09-24 12:07:47 +0100228 cpus_.emplace_back(cpu);
Lalit Maganti35622b72018-06-06 12:03:11 +0100229 start_ns_.emplace_back(start_ns);
230 durations_.emplace_back(duration_ns);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100231 utids_.emplace_back(utid);
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000232 end_states_.emplace_back(end_state);
233 priorities_.emplace_back(priority);
Lalit Maganti58638932019-01-31 10:48:26 +0000234
235 if (utid >= rows_for_utids_.size())
236 rows_for_utids_.resize(utid + 1);
237 rows_for_utids_[utid].emplace_back(slice_count() - 1);
Lalit Magantifde29042018-10-04 13:28:52 +0100238 return slice_count() - 1;
239 }
240
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000241 void set_duration(size_t index, int64_t duration_ns) {
Lalit Magantifde29042018-10-04 13:28:52 +0100242 durations_[index] = duration_ns;
Lalit Maganti35622b72018-06-06 12:03:11 +0100243 }
244
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000245 void set_end_state(size_t index, ftrace_utils::TaskState end_state) {
246 end_states_[index] = end_state;
247 }
248
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100249 size_t slice_count() const { return start_ns_.size(); }
Lalit Maganti35622b72018-06-06 12:03:11 +0100250
Lalit Magantiff69c112018-09-24 12:07:47 +0100251 const std::deque<uint32_t>& cpus() const { return cpus_; }
252
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000253 const std::deque<int64_t>& start_ns() const { return start_ns_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100254
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000255 const std::deque<int64_t>& durations() const { return durations_; }
Lalit Maganti35622b72018-06-06 12:03:11 +0100256
Isabelle Taylor68e42192018-06-19 16:19:31 +0100257 const std::deque<UniqueTid>& utids() const { return utids_; }
258
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000259 const std::deque<ftrace_utils::TaskState>& end_state() const {
260 return end_states_;
261 }
262
263 const std::deque<int32_t>& priorities() const { return priorities_; }
264
Lalit Maganti58638932019-01-31 10:48:26 +0000265 const std::deque<std::vector<uint32_t>>& rows_for_utids() const {
Lalit Magantif0f09c32019-01-18 17:29:31 +0000266 return rows_for_utids_;
267 }
268
Lalit Maganti35622b72018-06-06 12:03:11 +0100269 private:
Hector Dearman947f12a2018-09-11 16:50:36 +0100270 // Each deque below has the same number of entries (the number of slices
Lalit Maganti35622b72018-06-06 12:03:11 +0100271 // in the trace for the CPU).
Lalit Magantiff69c112018-09-24 12:07:47 +0100272 std::deque<uint32_t> cpus_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000273 std::deque<int64_t> start_ns_;
274 std::deque<int64_t> durations_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100275 std::deque<UniqueTid> utids_;
Lalit Magantib0b53ee2019-01-24 17:53:39 +0000276 std::deque<ftrace_utils::TaskState> end_states_;
277 std::deque<int32_t> priorities_;
Lalit Maganti58638932019-01-31 10:48:26 +0000278
279 // One row per utid.
280 std::deque<std::vector<uint32_t>> rows_for_utids_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100281 };
Isabelle Taylor68e42192018-06-19 16:19:31 +0100282
Primiano Tucci0d72a312018-08-07 14:42:45 +0100283 class NestableSlices {
284 public:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000285 inline size_t AddSlice(int64_t start_ns,
286 int64_t duration_ns,
Eric Seckler972225e2019-04-18 11:07:12 +0100287 int64_t ref,
288 RefType type,
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000289 StringId cat,
290 StringId name,
291 uint8_t depth,
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000292 int64_t stack_id,
293 int64_t parent_stack_id) {
Primiano Tucci0d72a312018-08-07 14:42:45 +0100294 start_ns_.emplace_back(start_ns);
295 durations_.emplace_back(duration_ns);
Eric Seckler972225e2019-04-18 11:07:12 +0100296 refs_.emplace_back(ref);
297 types_.emplace_back(type);
Primiano Tucci0d72a312018-08-07 14:42:45 +0100298 cats_.emplace_back(cat);
299 names_.emplace_back(name);
300 depths_.emplace_back(depth);
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100301 stack_ids_.emplace_back(stack_id);
302 parent_stack_ids_.emplace_back(parent_stack_id);
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000303 return slice_count() - 1;
304 }
305
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000306 void set_duration(size_t index, int64_t duration_ns) {
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000307 durations_[index] = duration_ns;
308 }
309
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000310 void set_stack_id(size_t index, int64_t stack_id) {
Lalit Maganti7b37bbf2018-11-09 15:58:54 +0000311 stack_ids_[index] = stack_id;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100312 }
313
314 size_t slice_count() const { return start_ns_.size(); }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000315 const std::deque<int64_t>& start_ns() const { return start_ns_; }
316 const std::deque<int64_t>& durations() const { return durations_; }
Eric Seckler972225e2019-04-18 11:07:12 +0100317 const std::deque<int64_t>& refs() const { return refs_; }
318 const std::deque<RefType>& types() const { return types_; }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100319 const std::deque<StringId>& cats() const { return cats_; }
320 const std::deque<StringId>& names() const { return names_; }
321 const std::deque<uint8_t>& depths() const { return depths_; }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000322 const std::deque<int64_t>& stack_ids() const { return stack_ids_; }
323 const std::deque<int64_t>& parent_stack_ids() const {
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100324 return parent_stack_ids_;
325 }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100326
327 private:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000328 std::deque<int64_t> start_ns_;
329 std::deque<int64_t> durations_;
Eric Seckler972225e2019-04-18 11:07:12 +0100330 std::deque<int64_t> refs_;
331 std::deque<RefType> types_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100332 std::deque<StringId> cats_;
333 std::deque<StringId> names_;
334 std::deque<uint8_t> depths_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000335 std::deque<int64_t> stack_ids_;
336 std::deque<int64_t> parent_stack_ids_;
Lalit Maganti35622b72018-06-06 12:03:11 +0100337 };
338
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000339 class CounterDefinitions {
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100340 public:
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000341 using Id = uint32_t;
Lalit Maganti521d97b2019-04-29 13:47:03 +0100342 static constexpr Id kInvalidId = std::numeric_limits<Id>::max();
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000343
344 inline Id AddCounterDefinition(StringId name_id,
345 int64_t ref,
346 RefType type) {
347 base::Hash hash;
348 hash.Update(name_id);
349 hash.Update(ref);
350 hash.Update(type);
351
352 // TODO(lalitm): this is a perf bottleneck and likely we can do something
353 // quite a bit better here.
354 uint64_t digest = hash.digest();
355 auto it = hash_to_row_idx_.find(digest);
356 if (it != hash_to_row_idx_.end())
357 return it->second;
358
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100359 name_ids_.emplace_back(name_id);
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100360 refs_.emplace_back(ref);
361 types_.emplace_back(type);
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000362 hash_to_row_idx_.emplace(digest, size() - 1);
363 return size() - 1;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100364 }
Lalit Magantifde29042018-10-04 13:28:52 +0100365
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000366 uint32_t size() const { return static_cast<uint32_t>(name_ids_.size()); }
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100367
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100368 const std::deque<StringId>& name_ids() const { return name_ids_; }
369
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100370 const std::deque<int64_t>& refs() const { return refs_; }
371
372 const std::deque<RefType>& types() const { return types_; }
373
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000374 private:
375 std::deque<StringId> name_ids_;
376 std::deque<int64_t> refs_;
377 std::deque<RefType> types_;
378
379 std::unordered_map<uint64_t, uint32_t> hash_to_row_idx_;
380 };
381
382 class CounterValues {
383 public:
384 inline uint32_t AddCounterValue(CounterDefinitions::Id counter_id,
385 int64_t timestamp,
386 double value) {
387 counter_ids_.emplace_back(counter_id);
388 timestamps_.emplace_back(timestamp);
389 values_.emplace_back(value);
390 arg_set_ids_.emplace_back(kInvalidArgSetId);
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100391
Lalit Maganti521d97b2019-04-29 13:47:03 +0100392 if (counter_id != CounterDefinitions::kInvalidId) {
393 if (counter_id >= rows_for_counter_id_.size()) {
394 rows_for_counter_id_.resize(counter_id + 1);
395 }
396 rows_for_counter_id_[counter_id].emplace_back(size() - 1);
397 }
398 return size() - 1;
399 }
400
401 void set_counter_id(uint32_t index, CounterDefinitions::Id counter_id) {
402 PERFETTO_DCHECK(counter_ids_[index] == CounterDefinitions::kInvalidId);
403
404 counter_ids_[index] = counter_id;
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100405 if (counter_id >= rows_for_counter_id_.size()) {
406 rows_for_counter_id_.resize(counter_id + 1);
407 }
Lalit Maganti521d97b2019-04-29 13:47:03 +0100408
409 auto* new_rows = &rows_for_counter_id_[counter_id];
410 new_rows->insert(
411 std::upper_bound(new_rows->begin(), new_rows->end(), index), index);
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000412 }
413
414 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
415
416 uint32_t size() const { return static_cast<uint32_t>(counter_ids_.size()); }
417
418 const std::deque<CounterDefinitions::Id>& counter_ids() const {
419 return counter_ids_;
420 }
421
422 const std::deque<int64_t>& timestamps() const { return timestamps_; }
423
424 const std::deque<double>& values() const { return values_; }
425
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000426 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
427
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100428 const std::deque<std::vector<uint32_t>>& rows_for_counter_id() const {
429 return rows_for_counter_id_;
430 }
431
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100432 private:
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000433 std::deque<CounterDefinitions::Id> counter_ids_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000434 std::deque<int64_t> timestamps_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100435 std::deque<double> values_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000436 std::deque<ArgSetId> arg_set_ids_;
Ioannis Ilkosf129c262019-04-25 14:53:51 +0100437
438 // Indexed by counter_id value and contains the row numbers corresponding to
439 // it.
440 std::deque<std::vector<uint32_t>> rows_for_counter_id_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100441 };
442
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700443 class SqlStats {
444 public:
445 static constexpr size_t kMaxLogEntries = 100;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100446 uint32_t RecordQueryBegin(const std::string& query,
447 int64_t time_queued,
448 int64_t time_started);
449 void RecordQueryFirstNext(uint32_t row, int64_t time_first_next);
450 void RecordQueryEnd(uint32_t row, int64_t time_end);
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700451 size_t size() const { return queries_.size(); }
452 const std::deque<std::string>& queries() const { return queries_; }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000453 const std::deque<int64_t>& times_queued() const { return times_queued_; }
454 const std::deque<int64_t>& times_started() const { return times_started_; }
Lalit Magantiaac2f652019-04-30 12:16:21 +0100455 const std::deque<int64_t>& times_first_next() const {
456 return times_first_next_;
457 }
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000458 const std::deque<int64_t>& times_ended() const { return times_ended_; }
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700459
460 private:
Lalit Magantiaac2f652019-04-30 12:16:21 +0100461 uint32_t popped_queries_ = 0;
462
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700463 std::deque<std::string> queries_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000464 std::deque<int64_t> times_queued_;
465 std::deque<int64_t> times_started_;
Lalit Magantiaac2f652019-04-30 12:16:21 +0100466 std::deque<int64_t> times_first_next_;
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000467 std::deque<int64_t> times_ended_;
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700468 };
469
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000470 class Instants {
471 public:
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000472 inline uint32_t AddInstantEvent(int64_t timestamp,
473 StringId name_id,
474 double value,
475 int64_t ref,
476 RefType type) {
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000477 timestamps_.emplace_back(timestamp);
478 name_ids_.emplace_back(name_id);
479 values_.emplace_back(value);
480 refs_.emplace_back(ref);
481 types_.emplace_back(type);
Lalit Maganti1c21d172019-02-07 10:48:24 +0000482 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti66ed7ad2019-01-11 16:47:26 +0000483 return static_cast<uint32_t>(instant_count() - 1);
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000484 }
485
Lalit Maganti521d97b2019-04-29 13:47:03 +0100486 void set_ref(uint32_t row, int64_t ref) { refs_[row] = ref; }
487
Lalit Maganti1c21d172019-02-07 10:48:24 +0000488 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
489
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000490 size_t instant_count() const { return timestamps_.size(); }
491
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000492 const std::deque<int64_t>& timestamps() const { return timestamps_; }
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000493
494 const std::deque<StringId>& name_ids() const { return name_ids_; }
495
496 const std::deque<double>& values() const { return values_; }
497
498 const std::deque<int64_t>& refs() const { return refs_; }
499
500 const std::deque<RefType>& types() const { return types_; }
501
Lalit Maganti1c21d172019-02-07 10:48:24 +0000502 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
503
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000504 private:
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000505 std::deque<int64_t> timestamps_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000506 std::deque<StringId> name_ids_;
507 std::deque<double> values_;
508 std::deque<int64_t> refs_;
509 std::deque<RefType> types_;
Lalit Maganti1c21d172019-02-07 10:48:24 +0000510 std::deque<ArgSetId> arg_set_ids_;
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000511 };
512
Lalit Maganti1d915a62019-01-07 12:10:42 +0000513 class RawEvents {
514 public:
515 inline RowId AddRawEvent(int64_t timestamp,
516 StringId name_id,
Lalit Magantie87cc812019-01-10 15:20:06 +0000517 uint32_t cpu,
Lalit Maganti1d915a62019-01-07 12:10:42 +0000518 UniqueTid utid) {
519 timestamps_.emplace_back(timestamp);
520 name_ids_.emplace_back(name_id);
Lalit Magantie87cc812019-01-10 15:20:06 +0000521 cpus_.emplace_back(cpu);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000522 utids_.emplace_back(utid);
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000523 arg_set_ids_.emplace_back(kInvalidArgSetId);
Lalit Maganti1d915a62019-01-07 12:10:42 +0000524 return CreateRowId(TableId::kRawEvents,
525 static_cast<uint32_t>(raw_event_count() - 1));
526 }
527
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000528 void set_arg_set_id(uint32_t row, ArgSetId id) { arg_set_ids_[row] = id; }
529
Lalit Maganti1d915a62019-01-07 12:10:42 +0000530 size_t raw_event_count() const { return timestamps_.size(); }
531
532 const std::deque<int64_t>& timestamps() const { return timestamps_; }
533
534 const std::deque<StringId>& name_ids() const { return name_ids_; }
535
Lalit Magantie87cc812019-01-10 15:20:06 +0000536 const std::deque<uint32_t>& cpus() const { return cpus_; }
537
Lalit Maganti1d915a62019-01-07 12:10:42 +0000538 const std::deque<UniqueTid>& utids() const { return utids_; }
539
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000540 const std::deque<ArgSetId>& arg_set_ids() const { return arg_set_ids_; }
541
Lalit Maganti1d915a62019-01-07 12:10:42 +0000542 private:
543 std::deque<int64_t> timestamps_;
544 std::deque<StringId> name_ids_;
Lalit Magantie87cc812019-01-10 15:20:06 +0000545 std::deque<uint32_t> cpus_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000546 std::deque<UniqueTid> utids_;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000547 std::deque<ArgSetId> arg_set_ids_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000548 };
549
Primiano Tucci2c761ef2019-01-07 20:20:46 +0000550 class AndroidLogs {
551 public:
552 inline size_t AddLogEvent(int64_t timestamp,
553 UniqueTid utid,
554 uint8_t prio,
555 StringId tag_id,
556 StringId msg_id) {
557 timestamps_.emplace_back(timestamp);
558 utids_.emplace_back(utid);
559 prios_.emplace_back(prio);
560 tag_ids_.emplace_back(tag_id);
561 msg_ids_.emplace_back(msg_id);
562 return size() - 1;
563 }
564
565 size_t size() const { return timestamps_.size(); }
566
567 const std::deque<int64_t>& timestamps() const { return timestamps_; }
568 const std::deque<UniqueTid>& utids() const { return utids_; }
569 const std::deque<uint8_t>& prios() const { return prios_; }
570 const std::deque<StringId>& tag_ids() const { return tag_ids_; }
571 const std::deque<StringId>& msg_ids() const { return msg_ids_; }
572
573 private:
574 std::deque<int64_t> timestamps_;
575 std::deque<UniqueTid> utids_;
576 std::deque<uint8_t> prios_;
577 std::deque<StringId> tag_ids_;
578 std::deque<StringId> msg_ids_;
579 };
580
Primiano Tucci0e38a142019-01-07 20:51:09 +0000581 struct Stats {
582 using IndexMap = std::map<int, int64_t>;
583 int64_t value = 0;
584 IndexMap indexed_values;
585 };
586 using StatsMap = std::array<Stats, stats::kNumKeys>;
587
Isabelle Taylora0a22972018-08-03 12:06:12 +0100588 void ResetStorage();
Lalit Maganti35622b72018-06-06 12:03:11 +0100589
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100590 UniqueTid AddEmptyThread(uint32_t tid) {
591 unique_threads_.emplace_back(tid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100592 return static_cast<UniqueTid>(unique_threads_.size() - 1);
593 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100594
Primiano Tuccib75dcee2018-08-08 12:21:36 +0100595 UniquePid AddEmptyProcess(uint32_t pid) {
596 unique_processes_.emplace_back(pid);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100597 return static_cast<UniquePid>(unique_processes_.size() - 1);
598 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100599
Isabelle Taylora0a22972018-08-03 12:06:12 +0100600 // Return an unqiue identifier for the contents of each string.
601 // The string is copied internally and can be destroyed after this called.
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100602 // Virtual for testing.
Lalit Maganti5c454312019-04-08 12:11:17 +0100603 virtual StringId InternString(base::StringView str) {
604 return string_pool_.InternString(str);
605 }
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100606
Isabelle Taylora0a22972018-08-03 12:06:12 +0100607 Process* GetMutableProcess(UniquePid upid) {
Lalit Maganti676658b2018-11-20 18:24:31 +0000608 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100609 return &unique_processes_[upid];
610 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100611
Isabelle Taylora0a22972018-08-03 12:06:12 +0100612 Thread* GetMutableThread(UniqueTid utid) {
Florian Mayera1aaec22018-09-19 17:02:26 +0100613 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylora0a22972018-08-03 12:06:12 +0100614 return &unique_threads_[utid];
615 }
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100616
Primiano Tucci0e38a142019-01-07 20:51:09 +0000617 // Example usage: SetStats(stats::android_log_num_failed, 42);
618 void SetStats(size_t key, int64_t value) {
619 PERFETTO_DCHECK(key < stats::kNumKeys);
620 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
621 stats_[key].value = value;
622 }
623
624 // Example usage: IncrementStats(stats::android_log_num_failed, -1);
625 void IncrementStats(size_t key, int64_t increment = 1) {
626 PERFETTO_DCHECK(key < stats::kNumKeys);
627 PERFETTO_DCHECK(stats::kTypes[key] == stats::kSingle);
628 stats_[key].value += increment;
629 }
630
631 // Example usage: SetIndexedStats(stats::cpu_failure, 1, 42);
632 void SetIndexedStats(size_t key, int index, int64_t value) {
633 PERFETTO_DCHECK(key < stats::kNumKeys);
634 PERFETTO_DCHECK(stats::kTypes[key] == stats::kIndexed);
635 stats_[key].indexed_values[index] = value;
636 }
637
Lalit Maganticaed37e2018-06-01 03:03:08 +0100638 // Reading methods.
Lalit Maganti5c454312019-04-08 12:11:17 +0100639 NullTermStringView GetString(StringId id) const {
640 return string_pool_.Get(id);
Isabelle Taylora0a22972018-08-03 12:06:12 +0100641 }
642
Lalit Magantie9d40532018-06-29 13:15:06 +0100643 const Process& GetProcess(UniquePid upid) const {
Lalit Maganti676658b2018-11-20 18:24:31 +0000644 PERFETTO_DCHECK(upid < unique_processes_.size());
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100645 return unique_processes_[upid];
646 }
647
Lalit Magantie9d40532018-06-29 13:15:06 +0100648 const Thread& GetThread(UniqueTid utid) const {
Lalit Maganti1f64cfa2018-09-18 13:20:02 +0100649 // Allow utid == 0 for idle thread retrieval.
Florian Mayera1aaec22018-09-19 17:02:26 +0100650 PERFETTO_DCHECK(utid < unique_threads_.size());
Isabelle Taylor68e42192018-06-19 16:19:31 +0100651 return unique_threads_[utid];
652 }
653
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000654 static RowId CreateRowId(TableId table, uint32_t row) {
Lalit Maganti85ca4a82018-12-07 17:28:02 +0000655 return (static_cast<RowId>(table) << kRowIdTableShift) | row;
Lalit Maganti5ea9e932018-11-30 14:19:39 +0000656 }
657
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000658 static std::pair<int8_t /*table*/, uint32_t /*row*/> ParseRowId(RowId rowid) {
659 auto id = static_cast<uint64_t>(rowid);
660 auto table_id = static_cast<uint8_t>(id >> kRowIdTableShift);
661 auto row = static_cast<uint32_t>(id & ((1ull << kRowIdTableShift) - 1));
662 return std::make_pair(table_id, row);
663 }
664
Lalit Magantiff69c112018-09-24 12:07:47 +0100665 const Slices& slices() const { return slices_; }
Lalit Magantifde29042018-10-04 13:28:52 +0100666 Slices* mutable_slices() { return &slices_; }
667
Primiano Tucci0d72a312018-08-07 14:42:45 +0100668 const NestableSlices& nestable_slices() const { return nestable_slices_; }
669 NestableSlices* mutable_nestable_slices() { return &nestable_slices_; }
670
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000671 const CounterDefinitions& counter_definitions() const {
672 return counter_definitions_;
673 }
674 CounterDefinitions* mutable_counter_definitions() {
675 return &counter_definitions_;
676 }
677
678 const CounterValues& counter_values() const { return counter_values_; }
679 CounterValues* mutable_counter_values() { return &counter_values_; }
Isabelle Taylor14674d42018-09-07 11:33:11 +0100680
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700681 const SqlStats& sql_stats() const { return sql_stats_; }
682 SqlStats* mutable_sql_stats() { return &sql_stats_; }
683
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000684 const Instants& instants() const { return instants_; }
685 Instants* mutable_instants() { return &instants_; }
686
Primiano Tucci2c761ef2019-01-07 20:20:46 +0000687 const AndroidLogs& android_logs() const { return android_log_; }
688 AndroidLogs* mutable_android_log() { return &android_log_; }
689
Primiano Tucci0e38a142019-01-07 20:51:09 +0000690 const StatsMap& stats() const { return stats_; }
Lalit Maganti05e8c132018-11-09 18:16:12 +0000691
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000692 const Args& args() const { return args_; }
693 Args* mutable_args() { return &args_; }
694
Lalit Maganti1d915a62019-01-07 12:10:42 +0000695 const RawEvents& raw_events() const { return raw_events_; }
696 RawEvents* mutable_raw_events() { return &raw_events_; }
697
Lalit Maganti5c454312019-04-08 12:11:17 +0100698 const StringPool& string_pool() const { return string_pool_; }
Lalit Magantiacda68b2018-10-29 15:23:25 +0000699
Isabelle Taylore7003fb2018-07-17 11:39:01 +0100700 // |unique_processes_| always contains at least 1 element becuase the 0th ID
701 // is reserved to indicate an invalid process.
Lalit Maganti9c6395b2019-01-17 00:25:09 +0000702 size_t process_count() const { return unique_processes_.size(); }
Primiano Tucci0d72a312018-08-07 14:42:45 +0100703
Isabelle Taylore7003fb2018-07-17 11:39:01 +0100704 // |unique_threads_| always contains at least 1 element becuase the 0th ID
705 // is reserved to indicate an invalid thread.
Lalit Maganti9c6395b2019-01-17 00:25:09 +0000706 size_t thread_count() const { return unique_threads_.size(); }
Isabelle Taylore7003fb2018-07-17 11:39:01 +0100707
Hector Dearman12323362018-08-09 16:09:28 +0100708 // Number of interned strings in the pool. Includes the empty string w/ ID=0.
709 size_t string_count() const { return string_pool_.size(); }
710
Ioannis Ilkosb8b11102019-01-29 17:56:55 +0000711 // Start / end ts (in nanoseconds) across the parsed trace events.
712 // Returns (0, 0) if the trace is empty.
713 std::pair<int64_t, int64_t> GetTraceTimestampBoundsNs() const;
714
Lalit Maganticaed37e2018-06-01 03:03:08 +0100715 private:
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000716 static constexpr uint8_t kRowIdTableShift = 32;
Isabelle Taylora0a22972018-08-03 12:06:12 +0100717
Primiano Tucci2da5d2e2018-08-10 14:23:31 +0100718 using StringHash = uint64_t;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100719
Lalit Maganti5c454312019-04-08 12:11:17 +0100720 TraceStorage(const TraceStorage&) = delete;
721 TraceStorage& operator=(const TraceStorage&) = delete;
722
723 TraceStorage(TraceStorage&&) = default;
724 TraceStorage& operator=(TraceStorage&&) = default;
Lalit Maganti4fa7c6c2019-02-06 15:06:36 +0000725
Lalit Maganti05e8c132018-11-09 18:16:12 +0000726 // Stats about parsing the trace.
Primiano Tucci0e38a142019-01-07 20:51:09 +0000727 StatsMap stats_{};
Lalit Maganti35622b72018-06-06 12:03:11 +0100728
Lalit Maganticaed37e2018-06-01 03:03:08 +0100729 // One entry for each CPU in the trace.
Lalit Magantiff69c112018-09-24 12:07:47 +0100730 Slices slices_;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100731
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000732 // Args for all other tables.
733 Args args_;
734
Lalit Maganticaed37e2018-06-01 03:03:08 +0100735 // One entry for each unique string in the trace.
Lalit Maganti5c454312019-04-08 12:11:17 +0100736 StringPool string_pool_;
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100737
Isabelle Taylor47328cf2018-06-12 14:33:59 +0100738 // One entry for each UniquePid, with UniquePid as the index.
Ioannis Ilkos9c03cbd2019-03-12 18:30:43 +0000739 // Never hold on to pointers to Process, as vector resize will
740 // invalidate them.
741 std::vector<Process> unique_processes_;
Isabelle Taylor68e42192018-06-19 16:19:31 +0100742
Isabelle Taylor68e42192018-06-19 16:19:31 +0100743 // One entry for each UniqueTid, with UniqueTid as the index.
Isabelle Taylor3dd366c2018-06-22 16:21:41 +0100744 std::deque<Thread> unique_threads_;
Primiano Tucci0d72a312018-08-07 14:42:45 +0100745
746 // Slices coming from userspace events (e.g. Chromium TRACE_EVENT macros).
747 NestableSlices nestable_slices_;
Isabelle Taylor15314ea2018-09-19 11:35:19 +0100748
Lalit Maganti8320e6d2019-03-14 18:49:33 +0000749 // The type of counters in the trace. Can be thought of the the "metadata".
750 CounterDefinitions counter_definitions_;
751
752 // The values from the Counter events from the trace. This includes CPU
753 // frequency events as well systrace trace_marker counter events.
754 CounterValues counter_values_;
Primiano Tucci5cb84f82018-10-31 21:46:36 -0700755
756 SqlStats sql_stats_;
Lalit Maganti6e9c55e2018-11-29 12:00:39 +0000757
Isabelle Taylorc8c11202018-11-05 11:36:22 +0000758 // These are instantaneous events in the trace. They have no duration
759 // and do not have a value that make sense to track over time.
760 // e.g. signal events
761 Instants instants_;
Lalit Maganti1d915a62019-01-07 12:10:42 +0000762
763 // Raw events are every ftrace event in the trace. The raw event includes
764 // the timestamp and the pid. The args for the raw event will be in the
765 // args table. This table can be used to generate a text version of the
766 // trace.
767 RawEvents raw_events_;
Primiano Tucci2c761ef2019-01-07 20:20:46 +0000768 AndroidLogs android_log_;
Lalit Maganticaed37e2018-06-01 03:03:08 +0100769};
770
771} // namespace trace_processor
772} // namespace perfetto
773
774#endif // SRC_TRACE_PROCESSOR_TRACE_STORAGE_H_