blob: 4e5fcf8e1a2612e7c98c7a7019782be4f2cfbde3 [file] [log] [blame]
Ferran Balaguer73882172019-09-02 16:39:42 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "ProfilingUtils.hpp"
7
Jim Flynn4e755a52020-03-29 17:48:26 +01008#include "common/include/ProfilingException.hpp"
9
Ferran Balaguer47d0fe92019-09-04 16:47:34 +010010#include <armnn/Version.hpp>
11
Matteo Martincigh5dc816e2019-11-04 14:05:28 +000012#include <WallClockTimer.hpp>
13
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +010014#include <armnn/utility/Assert.hpp>
Ferran Balaguer73882172019-09-02 16:39:42 +010015
Ferran Balaguer47d0fe92019-09-04 16:47:34 +010016#include <fstream>
Keith Davis3201eea2019-10-24 17:30:41 +010017#include <iostream>
Matteo Martincighab173e92019-09-05 12:02:04 +010018#include <limits>
Ferran Balaguer47d0fe92019-09-04 16:47:34 +010019
Ferran Balaguer73882172019-09-02 16:39:42 +010020namespace armnn
21{
22
23namespace profiling
24{
25
Matteo Martincigh6db5f202019-09-05 12:02:04 +010026namespace
Matteo Martincighab173e92019-09-05 12:02:04 +010027{
Matteo Martincighab173e92019-09-05 12:02:04 +010028
Matteo Martincigh6db5f202019-09-05 12:02:04 +010029void ThrowIfCantGenerateNextUid(uint16_t uid, uint16_t cores = 0)
30{
Matteo Martincighab173e92019-09-05 12:02:04 +010031 // Check that it is possible to generate the next UID without causing an overflow
Matteo Martincigh6db5f202019-09-05 12:02:04 +010032 switch (cores)
Matteo Martincighab173e92019-09-05 12:02:04 +010033 {
Matteo Martincigh6db5f202019-09-05 12:02:04 +010034 case 0:
35 case 1:
36 // Number of cores not specified or set to 1 (a value of zero indicates the device is not capable of
37 // running multiple parallel workloads and will not provide multiple streams of data for each event)
38 if (uid == std::numeric_limits<uint16_t>::max())
39 {
40 throw RuntimeException("Generating the next UID for profiling would result in an overflow");
41 }
42 break;
43 default: // cores > 1
44 // Multiple cores available, as max_counter_uid has to be set to: counter_uid + cores - 1, the maximum
45 // allowed value for a counter UID is consequently: uint16_t_max - cores + 1
46 if (uid >= std::numeric_limits<uint16_t>::max() - cores + 1)
47 {
48 throw RuntimeException("Generating the next UID for profiling would result in an overflow");
49 }
50 break;
Matteo Martincighab173e92019-09-05 12:02:04 +010051 }
Matteo Martincigh6db5f202019-09-05 12:02:04 +010052}
Matteo Martincighab173e92019-09-05 12:02:04 +010053
Matteo Martincigh6db5f202019-09-05 12:02:04 +010054} // Anonymous namespace
55
56uint16_t GetNextUid(bool peekOnly)
57{
58 // The UID used for profiling objects and events. The first valid UID is 1, as 0 is a reserved value
59 static uint16_t uid = 1;
60
61 // Check that it is possible to generate the next UID without causing an overflow (throws in case of error)
62 ThrowIfCantGenerateNextUid(uid);
63
64 if (peekOnly)
65 {
66 // Peek only
67 return uid;
68 }
69 else
70 {
71 // Get the next UID
72 return uid++;
73 }
74}
75
Keith Davise394bd92019-12-02 15:12:19 +000076std::vector<uint16_t> GetNextCounterUids(uint16_t firstUid, uint16_t cores)
Matteo Martincigh6db5f202019-09-05 12:02:04 +010077{
Matteo Martincigh6db5f202019-09-05 12:02:04 +010078 // Check that it is possible to generate the next counter UID without causing an overflow (throws in case of error)
Keith Davise394bd92019-12-02 15:12:19 +000079 ThrowIfCantGenerateNextUid(firstUid, cores);
Matteo Martincigh6db5f202019-09-05 12:02:04 +010080
81 // Get the next counter UIDs
82 size_t counterUidsSize = cores == 0 ? 1 : cores;
83 std::vector<uint16_t> counterUids(counterUidsSize, 0);
84 for (size_t i = 0; i < counterUidsSize; i++)
85 {
Keith Davise394bd92019-12-02 15:12:19 +000086 counterUids[i] = firstUid++;
Matteo Martincigh6db5f202019-09-05 12:02:04 +010087 }
88 return counterUids;
Matteo Martincighab173e92019-09-05 12:02:04 +010089}
90
Matteo Martincigh378bbfc2019-11-04 14:05:28 +000091void WriteBytes(const IPacketBufferPtr& packetBuffer, unsigned int offset, const void* value, unsigned int valueSize)
92{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +010093 ARMNN_ASSERT(packetBuffer);
Matteo Martincigh378bbfc2019-11-04 14:05:28 +000094
95 WriteBytes(packetBuffer->GetWritableData(), offset, value, valueSize);
96}
97
Keith Davis3201eea2019-10-24 17:30:41 +010098uint32_t ConstructHeader(uint32_t packetFamily,
99 uint32_t packetId)
100{
Keith Davis33ed2212020-03-30 10:43:41 +0100101 return (( packetFamily & 0x0000003F ) << 26 )|
102 (( packetId & 0x000003FF ) << 16 );
Keith Davis3201eea2019-10-24 17:30:41 +0100103}
104
105void WriteUint64(const std::unique_ptr<IPacketBuffer>& packetBuffer, unsigned int offset, uint64_t value)
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100106{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100107 ARMNN_ASSERT(packetBuffer);
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100108
109 WriteUint64(packetBuffer->GetWritableData(), offset, value);
110}
111
Matteo Martincigh2ffcc412019-11-05 11:47:40 +0000112void WriteUint32(const IPacketBufferPtr& packetBuffer, unsigned int offset, uint32_t value)
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100113{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100114 ARMNN_ASSERT(packetBuffer);
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100115
116 WriteUint32(packetBuffer->GetWritableData(), offset, value);
117}
118
Matteo Martincigh2ffcc412019-11-05 11:47:40 +0000119void WriteUint16(const IPacketBufferPtr& packetBuffer, unsigned int offset, uint16_t value)
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100120{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100121 ARMNN_ASSERT(packetBuffer);
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100122
123 WriteUint16(packetBuffer->GetWritableData(), offset, value);
124}
125
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000126void WriteUint8(const IPacketBufferPtr& packetBuffer, unsigned int offset, uint8_t value)
127{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100128 ARMNN_ASSERT(packetBuffer);
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000129
130 WriteUint8(packetBuffer->GetWritableData(), offset, value);
131}
132
Matteo Martincigh378bbfc2019-11-04 14:05:28 +0000133void WriteBytes(unsigned char* buffer, unsigned int offset, const void* value, unsigned int valueSize)
134{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100135 ARMNN_ASSERT(buffer);
136 ARMNN_ASSERT(value);
Matteo Martincigh378bbfc2019-11-04 14:05:28 +0000137
138 for (unsigned int i = 0; i < valueSize; i++, offset++)
139 {
140 buffer[offset] = *(reinterpret_cast<const unsigned char*>(value) + i);
141 }
142}
143
Francis Murtagh3a161982019-09-04 15:25:02 +0100144void WriteUint64(unsigned char* buffer, unsigned int offset, uint64_t value)
145{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100146 ARMNN_ASSERT(buffer);
Francis Murtagh3a161982019-09-04 15:25:02 +0100147
148 buffer[offset] = static_cast<unsigned char>(value & 0xFF);
149 buffer[offset + 1] = static_cast<unsigned char>((value >> 8) & 0xFF);
150 buffer[offset + 2] = static_cast<unsigned char>((value >> 16) & 0xFF);
151 buffer[offset + 3] = static_cast<unsigned char>((value >> 24) & 0xFF);
152 buffer[offset + 4] = static_cast<unsigned char>((value >> 32) & 0xFF);
153 buffer[offset + 5] = static_cast<unsigned char>((value >> 40) & 0xFF);
154 buffer[offset + 6] = static_cast<unsigned char>((value >> 48) & 0xFF);
155 buffer[offset + 7] = static_cast<unsigned char>((value >> 56) & 0xFF);
156}
157
Ferran Balaguer73882172019-09-02 16:39:42 +0100158void WriteUint32(unsigned char* buffer, unsigned int offset, uint32_t value)
159{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100160 ARMNN_ASSERT(buffer);
Ferran Balaguer73882172019-09-02 16:39:42 +0100161
Matteo Martincigh149528e2019-09-05 12:02:04 +0100162 buffer[offset] = static_cast<unsigned char>(value & 0xFF);
Ferran Balaguer73882172019-09-02 16:39:42 +0100163 buffer[offset + 1] = static_cast<unsigned char>((value >> 8) & 0xFF);
164 buffer[offset + 2] = static_cast<unsigned char>((value >> 16) & 0xFF);
165 buffer[offset + 3] = static_cast<unsigned char>((value >> 24) & 0xFF);
166}
167
168void WriteUint16(unsigned char* buffer, unsigned int offset, uint16_t value)
169{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100170 ARMNN_ASSERT(buffer);
Ferran Balaguer73882172019-09-02 16:39:42 +0100171
Matteo Martincigh149528e2019-09-05 12:02:04 +0100172 buffer[offset] = static_cast<unsigned char>(value & 0xFF);
Ferran Balaguer73882172019-09-02 16:39:42 +0100173 buffer[offset + 1] = static_cast<unsigned char>((value >> 8) & 0xFF);
174}
175
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000176void WriteUint8(unsigned char* buffer, unsigned int offset, uint8_t value)
177{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100178 ARMNN_ASSERT(buffer);
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000179
180 buffer[offset] = static_cast<unsigned char>(value);
181}
182
Matteo Martincigh378bbfc2019-11-04 14:05:28 +0000183void ReadBytes(const IPacketBufferPtr& packetBuffer, unsigned int offset, unsigned int valueSize, uint8_t outValue[])
184{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100185 ARMNN_ASSERT(packetBuffer);
Matteo Martincigh378bbfc2019-11-04 14:05:28 +0000186
187 ReadBytes(packetBuffer->GetReadableData(), offset, valueSize, outValue);
188}
189
Matteo Martincigh2ffcc412019-11-05 11:47:40 +0000190uint64_t ReadUint64(const IPacketBufferPtr& packetBuffer, unsigned int offset)
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100191{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100192 ARMNN_ASSERT(packetBuffer);
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100193
194 return ReadUint64(packetBuffer->GetReadableData(), offset);
195}
196
Matteo Martincigh2ffcc412019-11-05 11:47:40 +0000197uint32_t ReadUint32(const IPacketBufferPtr& packetBuffer, unsigned int offset)
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100198{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100199 ARMNN_ASSERT(packetBuffer);
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100200
201 return ReadUint32(packetBuffer->GetReadableData(), offset);
202}
203
Matteo Martincigh2ffcc412019-11-05 11:47:40 +0000204uint16_t ReadUint16(const IPacketBufferPtr& packetBuffer, unsigned int offset)
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100205{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100206 ARMNN_ASSERT(packetBuffer);
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100207
208 return ReadUint16(packetBuffer->GetReadableData(), offset);
209}
210
Matteo Martincigh2ffcc412019-11-05 11:47:40 +0000211uint8_t ReadUint8(const IPacketBufferPtr& packetBuffer, unsigned int offset)
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100212{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100213 ARMNN_ASSERT(packetBuffer);
Narumol Prangnawarat404b2752019-09-24 17:23:16 +0100214
215 return ReadUint8(packetBuffer->GetReadableData(), offset);
216}
217
Matteo Martincigh378bbfc2019-11-04 14:05:28 +0000218void ReadBytes(const unsigned char* buffer, unsigned int offset, unsigned int valueSize, uint8_t outValue[])
219{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100220 ARMNN_ASSERT(buffer);
221 ARMNN_ASSERT(outValue);
Matteo Martincigh378bbfc2019-11-04 14:05:28 +0000222
223 for (unsigned int i = 0; i < valueSize; i++, offset++)
224 {
225 outValue[i] = static_cast<uint8_t>(buffer[offset]);
226 }
227}
228
Francis Murtagh3a161982019-09-04 15:25:02 +0100229uint64_t ReadUint64(const unsigned char* buffer, unsigned int offset)
230{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100231 ARMNN_ASSERT(buffer);
Francis Murtagh3a161982019-09-04 15:25:02 +0100232
233 uint64_t value = 0;
Matteo Martincighab173e92019-09-05 12:02:04 +0100234 value = static_cast<uint64_t>(buffer[offset]);
Francis Murtagh3a161982019-09-04 15:25:02 +0100235 value |= static_cast<uint64_t>(buffer[offset + 1]) << 8;
236 value |= static_cast<uint64_t>(buffer[offset + 2]) << 16;
237 value |= static_cast<uint64_t>(buffer[offset + 3]) << 24;
238 value |= static_cast<uint64_t>(buffer[offset + 4]) << 32;
239 value |= static_cast<uint64_t>(buffer[offset + 5]) << 40;
240 value |= static_cast<uint64_t>(buffer[offset + 6]) << 48;
241 value |= static_cast<uint64_t>(buffer[offset + 7]) << 56;
242
243 return value;
244}
245
Ferran Balaguer73882172019-09-02 16:39:42 +0100246uint32_t ReadUint32(const unsigned char* buffer, unsigned int offset)
247{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100248 ARMNN_ASSERT(buffer);
Ferran Balaguer73882172019-09-02 16:39:42 +0100249
250 uint32_t value = 0;
Matteo Martincigh149528e2019-09-05 12:02:04 +0100251 value = static_cast<uint32_t>(buffer[offset]);
Ferran Balaguer73882172019-09-02 16:39:42 +0100252 value |= static_cast<uint32_t>(buffer[offset + 1]) << 8;
253 value |= static_cast<uint32_t>(buffer[offset + 2]) << 16;
254 value |= static_cast<uint32_t>(buffer[offset + 3]) << 24;
255 return value;
256}
257
258uint16_t ReadUint16(const unsigned char* buffer, unsigned int offset)
259{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100260 ARMNN_ASSERT(buffer);
Ferran Balaguer73882172019-09-02 16:39:42 +0100261
262 uint32_t value = 0;
Matteo Martincigh149528e2019-09-05 12:02:04 +0100263 value = static_cast<uint32_t>(buffer[offset]);
Ferran Balaguer73882172019-09-02 16:39:42 +0100264 value |= static_cast<uint32_t>(buffer[offset + 1]) << 8;
265 return static_cast<uint16_t>(value);
266}
267
Matteo Martincigh42f9d9e2019-09-05 12:02:04 +0100268uint8_t ReadUint8(const unsigned char* buffer, unsigned int offset)
269{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100270 ARMNN_ASSERT(buffer);
Matteo Martincigh42f9d9e2019-09-05 12:02:04 +0100271
272 return buffer[offset];
273}
274
Ferran Balaguer47d0fe92019-09-04 16:47:34 +0100275std::string GetSoftwareInfo()
276{
277 return std::string("ArmNN");
278}
279
280std::string GetHardwareVersion()
281{
282 return std::string();
283}
284
285std::string GetSoftwareVersion()
286{
287 std::string armnnVersion(ARMNN_VERSION);
288 std::string result = "Armnn " + armnnVersion.substr(2,2) + "." + armnnVersion.substr(4,2);
289 return result;
290}
291
292std::string GetProcessName()
293{
294 std::ifstream comm("/proc/self/comm");
295 std::string name;
296 getline(comm, name);
297 return name;
298}
299
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000300// Calculate the actual length an SwString will be including the terminating null character
301// padding to bring it to the next uint32_t boundary but minus the leading uint32_t encoding
302// the size to allow the offset to be correctly updated when decoding a binary packet.
303uint32_t CalculateSizeOfPaddedSwString(const std::string& str)
304{
305 std::vector<uint32_t> swTraceString;
306 StringToSwTraceString<SwTraceCharPolicy>(str, swTraceString);
307 unsigned int uint32_t_size = sizeof(uint32_t);
308 uint32_t size = (boost::numeric_cast<uint32_t>(swTraceString.size()) - 1) * uint32_t_size;
309 return size;
310}
311
312// Read TimelineMessageDirectoryPacket from given IPacketBuffer and offset
313SwTraceMessage ReadSwTraceMessage(const unsigned char* packetBuffer, unsigned int& offset)
314{
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100315 ARMNN_ASSERT(packetBuffer);
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000316
317 unsigned int uint32_t_size = sizeof(uint32_t);
318
319 SwTraceMessage swTraceMessage;
320
321 // Read the decl_id
322 uint32_t readDeclId = ReadUint32(packetBuffer, offset);
323 swTraceMessage.m_Id = readDeclId;
324
325 // SWTrace "namestring" format
326 // length of the string (first 4 bytes) + string + null terminator
327
328 // Check the decl_name
329 offset += uint32_t_size;
330 uint32_t swTraceDeclNameLength = ReadUint32(packetBuffer, offset);
331
332 offset += uint32_t_size;
333 std::vector<unsigned char> swTraceStringBuffer(swTraceDeclNameLength - 1);
334 std::memcpy(swTraceStringBuffer.data(),
335 packetBuffer + offset, swTraceStringBuffer.size());
336
337 swTraceMessage.m_Name.assign(swTraceStringBuffer.begin(), swTraceStringBuffer.end()); // name
338
339 // Check the ui_name
340 offset += CalculateSizeOfPaddedSwString(swTraceMessage.m_Name);
341 uint32_t swTraceUINameLength = ReadUint32(packetBuffer, offset);
342
343 offset += uint32_t_size;
344 swTraceStringBuffer.resize(swTraceUINameLength - 1);
345 std::memcpy(swTraceStringBuffer.data(),
346 packetBuffer + offset, swTraceStringBuffer.size());
347
348 swTraceMessage.m_UiName.assign(swTraceStringBuffer.begin(), swTraceStringBuffer.end()); // ui_name
349
350 // Check arg_types
351 offset += CalculateSizeOfPaddedSwString(swTraceMessage.m_UiName);
352 uint32_t swTraceArgTypesLength = ReadUint32(packetBuffer, offset);
353
354 offset += uint32_t_size;
355 swTraceStringBuffer.resize(swTraceArgTypesLength - 1);
356 std::memcpy(swTraceStringBuffer.data(),
357 packetBuffer + offset, swTraceStringBuffer.size());
358
359 swTraceMessage.m_ArgTypes.assign(swTraceStringBuffer.begin(), swTraceStringBuffer.end()); // arg_types
360
361 std::string swTraceString(swTraceStringBuffer.begin(), swTraceStringBuffer.end());
362
363 // Check arg_names
364 offset += CalculateSizeOfPaddedSwString(swTraceString);
365 uint32_t swTraceArgNamesLength = ReadUint32(packetBuffer, offset);
366
367 offset += uint32_t_size;
368 swTraceStringBuffer.resize(swTraceArgNamesLength - 1);
369 std::memcpy(swTraceStringBuffer.data(),
370 packetBuffer + offset, swTraceStringBuffer.size());
371
372 swTraceString.assign(swTraceStringBuffer.begin(), swTraceStringBuffer.end());
373 std::stringstream stringStream(swTraceString);
374 std::string argName;
375 while (std::getline(stringStream, argName, ','))
376 {
377 swTraceMessage.m_ArgNames.push_back(argName);
378 }
379
380 offset += CalculateSizeOfPaddedSwString(swTraceString);
381
382 return swTraceMessage;
383}
384
Jan Eilers92fa15b2019-10-15 15:23:25 +0100385/// Creates a timeline packet header
386///
387/// \params
388/// packetFamiliy Timeline Packet Family
389/// packetClass Timeline Packet Class
390/// packetType Timeline Packet Type
391/// streamId Stream identifier
392/// seqeunceNumbered When non-zero the 4 bytes following the header is a u32 sequence number
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100393/// dataLength Unsigned 24-bit integer. Length of data, in bytes. Zero is permitted
Jan Eilers92fa15b2019-10-15 15:23:25 +0100394///
395/// \returns
396/// Pair of uint32_t containing word0 and word1 of the header
397std::pair<uint32_t, uint32_t> CreateTimelinePacketHeader(uint32_t packetFamily,
398 uint32_t packetClass,
399 uint32_t packetType,
400 uint32_t streamId,
401 uint32_t sequenceNumbered,
402 uint32_t dataLength)
403{
404 // Packet header word 0:
405 // 26:31 [6] packet_family: timeline Packet Family, value 0b000001
406 // 19:25 [7] packet_class: packet class
407 // 16:18 [3] packet_type: packet type
408 // 8:15 [8] reserved: all zeros
409 // 0:7 [8] stream_id: stream identifier
410 uint32_t packetHeaderWord0 = ((packetFamily & 0x0000003F) << 26) |
411 ((packetClass & 0x0000007F) << 19) |
412 ((packetType & 0x00000007) << 16) |
413 ((streamId & 0x00000007) << 0);
414
415 // Packet header word 1:
416 // 25:31 [7] reserved: all zeros
417 // 24 [1] sequence_numbered: when non-zero the 4 bytes following the header is a u32 sequence number
418 // 0:23 [24] data_length: unsigned 24-bit integer. Length of data, in bytes. Zero is permitted
419 uint32_t packetHeaderWord1 = ((sequenceNumbered & 0x00000001) << 24) |
420 ((dataLength & 0x00FFFFFF) << 0);
421
422 return std::make_pair(packetHeaderWord0, packetHeaderWord1);
423}
424
425/// Creates a packet header for the timeline messages:
426/// * declareLabel
427/// * declareEntity
428/// * declareEventClass
429/// * declareRelationship
430/// * declareEvent
431///
432/// \param
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100433/// dataLength The length of the message body in bytes
Jan Eilers92fa15b2019-10-15 15:23:25 +0100434///
435/// \returns
436/// Pair of uint32_t containing word0 and word1 of the header
437std::pair<uint32_t, uint32_t> CreateTimelineMessagePacketHeader(unsigned int dataLength)
438{
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100439 return CreateTimelinePacketHeader(1, // Packet family
440 0, // Packet class
441 1, // Packet type
442 0, // Stream id
443 0, // Sequence number
444 dataLength); // Data length
Jan Eilers92fa15b2019-10-15 15:23:25 +0100445}
446
Matteo Martincigh0aed4f92019-10-01 14:25:34 +0100447TimelinePacketStatus WriteTimelineLabelBinaryPacket(uint64_t profilingGuid,
448 const std::string& label,
449 unsigned char* buffer,
Keith Davis97da5e22020-03-05 16:25:28 +0000450 unsigned int remainingBufferSize,
Matteo Martincigh0aed4f92019-10-01 14:25:34 +0100451 unsigned int& numberOfBytesWritten)
452{
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100453 // Initialize the output value
Matteo Martincigh0aed4f92019-10-01 14:25:34 +0100454 numberOfBytesWritten = 0;
455
456 // Check that the given buffer is valid
Keith Davis97da5e22020-03-05 16:25:28 +0000457 if (buffer == nullptr || remainingBufferSize == 0)
Matteo Martincigh0aed4f92019-10-01 14:25:34 +0100458 {
459 return TimelinePacketStatus::BufferExhaustion;
460 }
461
462 // Utils
463 unsigned int uint32_t_size = sizeof(uint32_t);
464 unsigned int uint64_t_size = sizeof(uint64_t);
465
466 // Convert the label into a SWTrace string
467 std::vector<uint32_t> swTraceLabel;
468 bool result = StringToSwTraceString<SwTraceCharPolicy>(label, swTraceLabel);
469 if (!result)
470 {
471 return TimelinePacketStatus::Error;
472 }
473
474 // Calculate the size of the SWTrace string label (in bytes)
475 unsigned int swTraceLabelSize = boost::numeric_cast<unsigned int>(swTraceLabel.size()) * uint32_t_size;
476
477 // Calculate the length of the data (in bytes)
Jan Eilersb884ea42019-10-16 09:54:15 +0100478 unsigned int timelineLabelPacketDataLength = uint32_t_size + // decl_Id
479 uint64_t_size + // Profiling GUID
Matteo Martincigh0aed4f92019-10-01 14:25:34 +0100480 swTraceLabelSize; // Label
481
Matteo Martincigh0aed4f92019-10-01 14:25:34 +0100482 // Check whether the timeline binary packet fits in the given buffer
Keith Davis97da5e22020-03-05 16:25:28 +0000483 if (timelineLabelPacketDataLength > remainingBufferSize)
Matteo Martincigh0aed4f92019-10-01 14:25:34 +0100484 {
485 return TimelinePacketStatus::BufferExhaustion;
486 }
487
Matteo Martincigh0aed4f92019-10-01 14:25:34 +0100488 // Initialize the offset for writing in the buffer
489 unsigned int offset = 0;
490
Jan Eilersb884ea42019-10-16 09:54:15 +0100491 // Write decl_Id to the buffer
492 WriteUint32(buffer, offset, 0u);
Matteo Martincigh0aed4f92019-10-01 14:25:34 +0100493 offset += uint32_t_size;
494
495 // Write the timeline binary packet payload to the buffer
496 WriteUint64(buffer, offset, profilingGuid); // Profiling GUID
497 offset += uint64_t_size;
498 for (uint32_t swTraceLabelWord : swTraceLabel)
499 {
500 WriteUint32(buffer, offset, swTraceLabelWord); // Label
501 offset += uint32_t_size;
502 }
503
504 // Update the number of bytes written
Keith Davis97da5e22020-03-05 16:25:28 +0000505 numberOfBytesWritten = timelineLabelPacketDataLength;
Matteo Martincigh0aed4f92019-10-01 14:25:34 +0100506
507 return TimelinePacketStatus::Ok;
508}
509
Keith Davis97da5e22020-03-05 16:25:28 +0000510TimelinePacketStatus WriteTimelineEntityBinary(uint64_t profilingGuid,
511 unsigned char* buffer,
512 unsigned int remainingBufferSize,
513 unsigned int& numberOfBytesWritten)
David Monahanf21f6062019-10-07 15:11:15 +0100514{
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100515 // Initialize the output value
David Monahanf21f6062019-10-07 15:11:15 +0100516 numberOfBytesWritten = 0;
517
518 // Check that the given buffer is valid
Keith Davis97da5e22020-03-05 16:25:28 +0000519 if (buffer == nullptr || remainingBufferSize == 0)
David Monahanf21f6062019-10-07 15:11:15 +0100520 {
521 return TimelinePacketStatus::BufferExhaustion;
522 }
523
524 // Utils
525 unsigned int uint32_t_size = sizeof(uint32_t);
526 unsigned int uint64_t_size = sizeof(uint64_t);
527
528 // Calculate the length of the data (in bytes)
Keith Davis97da5e22020-03-05 16:25:28 +0000529 unsigned int timelineEntityDataLength = uint32_t_size + uint64_t_size; // decl_id + Profiling GUID
David Monahanf21f6062019-10-07 15:11:15 +0100530
531 // Check whether the timeline binary packet fits in the given buffer
Keith Davis97da5e22020-03-05 16:25:28 +0000532 if (timelineEntityDataLength > remainingBufferSize)
David Monahanf21f6062019-10-07 15:11:15 +0100533 {
534 return TimelinePacketStatus::BufferExhaustion;
535 }
536
David Monahanf21f6062019-10-07 15:11:15 +0100537 // Initialize the offset for writing in the buffer
538 unsigned int offset = 0;
539
Jan Eilersb884ea42019-10-16 09:54:15 +0100540 // Write the decl_Id to the buffer
541 WriteUint32(buffer, offset, 1u);
David Monahanf21f6062019-10-07 15:11:15 +0100542 offset += uint32_t_size;
543
544 // Write the timeline binary packet payload to the buffer
545 WriteUint64(buffer, offset, profilingGuid); // Profiling GUID
546
547 // Update the number of bytes written
Keith Davis97da5e22020-03-05 16:25:28 +0000548 numberOfBytesWritten = timelineEntityDataLength;
David Monahanf21f6062019-10-07 15:11:15 +0100549
550 return TimelinePacketStatus::Ok;
551}
552
Keith Davis97da5e22020-03-05 16:25:28 +0000553TimelinePacketStatus WriteTimelineRelationshipBinary(ProfilingRelationshipType relationshipType,
554 uint64_t relationshipGuid,
555 uint64_t headGuid,
556 uint64_t tailGuid,
557 unsigned char* buffer,
558 unsigned int remainingBufferSize,
559 unsigned int& numberOfBytesWritten)
Narumol Prangnawarat7e5eec72019-10-16 12:16:26 +0100560{
561 // Initialize the output value
562 numberOfBytesWritten = 0;
563
564 // Check that the given buffer is valid
Keith Davis97da5e22020-03-05 16:25:28 +0000565 if (buffer == nullptr || remainingBufferSize == 0)
Narumol Prangnawarat7e5eec72019-10-16 12:16:26 +0100566 {
567 return TimelinePacketStatus::BufferExhaustion;
568 }
569
570 // Utils
571 unsigned int uint32_t_size = sizeof(uint32_t);
572 unsigned int uint64_t_size = sizeof(uint64_t);
573
574 // Calculate the length of the data (in bytes)
Keith Davis97da5e22020-03-05 16:25:28 +0000575 unsigned int timelineRelationshipDataLength = uint32_t_size * 2 + // decl_id + Relationship Type
576 uint64_t_size * 3; // Relationship GUID + Head GUID + tail GUID
Narumol Prangnawarat7e5eec72019-10-16 12:16:26 +0100577
Keith Davis97da5e22020-03-05 16:25:28 +0000578 // Check whether the timeline binary fits in the given buffer
579 if (timelineRelationshipDataLength > remainingBufferSize)
Narumol Prangnawarat7e5eec72019-10-16 12:16:26 +0100580 {
581 return TimelinePacketStatus::BufferExhaustion;
582 }
583
Narumol Prangnawarat7e5eec72019-10-16 12:16:26 +0100584 // Initialize the offset for writing in the buffer
585 unsigned int offset = 0;
586
Narumol Prangnawarat7e5eec72019-10-16 12:16:26 +0100587 uint32_t relationshipTypeUint = 0;
588
589 switch (relationshipType)
590 {
591 case ProfilingRelationshipType::RetentionLink:
592 relationshipTypeUint = 0;
593 break;
594 case ProfilingRelationshipType::ExecutionLink:
595 relationshipTypeUint = 1;
596 break;
597 case ProfilingRelationshipType::DataLink:
598 relationshipTypeUint = 2;
599 break;
600 case ProfilingRelationshipType::LabelLink:
601 relationshipTypeUint = 3;
602 break;
603 default:
604 throw InvalidArgumentException("Unknown relationship type given.");
605 }
606
Keith Davis97da5e22020-03-05 16:25:28 +0000607 // Write the timeline binary payload to the buffer
Narumol Prangnawarat7e5eec72019-10-16 12:16:26 +0100608 // decl_id of the timeline message
609 uint32_t declId = 3;
610 WriteUint32(buffer, offset, declId); // decl_id
611 offset += uint32_t_size;
612 WriteUint32(buffer, offset, relationshipTypeUint); // Relationship Type
613 offset += uint32_t_size;
614 WriteUint64(buffer, offset, relationshipGuid); // GUID of this relationship
615 offset += uint64_t_size;
616 WriteUint64(buffer, offset, headGuid); // head of relationship GUID
617 offset += uint64_t_size;
618 WriteUint64(buffer, offset, tailGuid); // tail of relationship GUID
619
620 // Update the number of bytes written
Keith Davis97da5e22020-03-05 16:25:28 +0000621 numberOfBytesWritten = timelineRelationshipDataLength;
Narumol Prangnawarat7e5eec72019-10-16 12:16:26 +0100622
623 return TimelinePacketStatus::Ok;
624}
625
Sadik Armagan784db772019-10-08 15:05:38 +0100626TimelinePacketStatus WriteTimelineMessageDirectoryPackage(unsigned char* buffer,
Keith Davis97da5e22020-03-05 16:25:28 +0000627 unsigned int remainingBufferSize,
Sadik Armagan784db772019-10-08 15:05:38 +0100628 unsigned int& numberOfBytesWritten)
629{
630 // Initialize the output value
631 numberOfBytesWritten = 0;
632
633 // Check that the given buffer is valid
Keith Davis97da5e22020-03-05 16:25:28 +0000634 if (buffer == nullptr || remainingBufferSize == 0)
Sadik Armagan784db772019-10-08 15:05:38 +0100635 {
636 return TimelinePacketStatus::BufferExhaustion;
637 }
638
639 // Utils
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000640 unsigned int uint8_t_size = sizeof(uint8_t);
Sadik Armagan784db772019-10-08 15:05:38 +0100641 unsigned int uint32_t_size = sizeof(uint32_t);
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000642 unsigned int uint64_t_size = sizeof(uint64_t);
Sadik Armagan784db772019-10-08 15:05:38 +0100643
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100644 // The payload/data of the packet consists of swtrace event definitions encoded according
Sadik Armagan784db772019-10-08 15:05:38 +0100645 // to the swtrace directory specification. The messages being the five defined below:
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000646 //
647 // | decl_id | decl_name | ui_name | arg_types | arg_names |
Sadik Armagan784db772019-10-08 15:05:38 +0100648 // |-----------|---------------------|-----------------------|-------------|-------------------------------------|
649 // | 0 | declareLabel | declare label | ps | guid,value |
650 // | 1 | declareEntity | declare entity | p | guid |
651 // | 2 | declareEventClass | declare event class | p | guid |
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100652 // | 3 | declareRelationship | declare relationship | Ippp | relationshipType,relationshipGuid, |
653 // | | | | | headGuid,tailGuid |
Sadik Armagan784db772019-10-08 15:05:38 +0100654 // | 4 | declareEvent | declare event | @tp | timestamp,threadId,eventGuid |
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100655 std::vector<std::vector<std::string>> timelineDirectoryMessages
656 {
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000657 { "0", "declareLabel", "declare label", "ps", "guid,value" },
658 { "1", "declareEntity", "declare entity", "p", "guid" },
659 { "2", "declareEventClass", "declare event class", "p", "guid" },
660 { "3", "declareRelationship", "declare relationship", "Ippp",
661 "relationshipType,relationshipGuid,headGuid,tailGuid" },
662 { "4", "declareEvent", "declare event", "@tp", "timestamp,threadId,eventGuid" }
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100663 };
Sadik Armagan784db772019-10-08 15:05:38 +0100664
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000665 // Build the message declarations
666 std::vector<uint32_t> swTraceBuffer;
667 for (const auto& directoryComponent : timelineDirectoryMessages)
Sadik Armagan784db772019-10-08 15:05:38 +0100668 {
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000669 // decl_id
670 uint32_t declId = 0;
671 try
Sadik Armagan784db772019-10-08 15:05:38 +0100672 {
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000673 declId = boost::numeric_cast<uint32_t>(std::stoul(directoryComponent[0]));
Sadik Armagan784db772019-10-08 15:05:38 +0100674 }
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000675 catch (const std::exception&)
676 {
677 return TimelinePacketStatus::Error;
678 }
679 swTraceBuffer.push_back(declId);
680
681 bool result = true;
682 result &= ConvertDirectoryComponent<SwTraceNameCharPolicy>(directoryComponent[1], swTraceBuffer); // decl_name
683 result &= ConvertDirectoryComponent<SwTraceCharPolicy> (directoryComponent[2], swTraceBuffer); // ui_name
684 result &= ConvertDirectoryComponent<SwTraceTypeCharPolicy>(directoryComponent[3], swTraceBuffer); // arg_types
685 result &= ConvertDirectoryComponent<SwTraceCharPolicy> (directoryComponent[4], swTraceBuffer); // arg_names
686 if (!result)
687 {
688 return TimelinePacketStatus::Error;
689 }
Sadik Armagan784db772019-10-08 15:05:38 +0100690 }
691
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000692 unsigned int dataLength = 3 * uint8_t_size + // Stream header (3 bytes)
693 boost::numeric_cast<unsigned int>(swTraceBuffer.size()) *
694 uint32_t_size; // Trace directory (5 messages)
695
Sadik Armagan784db772019-10-08 15:05:38 +0100696 // Calculate the timeline directory binary packet size (in bytes)
697 unsigned int timelineDirectoryPacketSize = 2 * uint32_t_size + // Header (2 words)
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000698 dataLength; // Payload
Sadik Armagan784db772019-10-08 15:05:38 +0100699
700 // Check whether the timeline directory binary packet fits in the given buffer
Keith Davis97da5e22020-03-05 16:25:28 +0000701 if (timelineDirectoryPacketSize > remainingBufferSize)
Sadik Armagan784db772019-10-08 15:05:38 +0100702 {
703 return TimelinePacketStatus::BufferExhaustion;
704 }
705
Jan Eilersb884ea42019-10-16 09:54:15 +0100706 // Create packet header
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000707 auto packetHeader = CreateTimelinePacketHeader(1, 0, 0, 0, 0, boost::numeric_cast<uint32_t>(dataLength));
Sadik Armagan784db772019-10-08 15:05:38 +0100708
709 // Initialize the offset for writing in the buffer
710 unsigned int offset = 0;
711
712 // Write the timeline binary packet header to the buffer
Jan Eilersb884ea42019-10-16 09:54:15 +0100713 WriteUint32(buffer, offset, packetHeader.first);
Sadik Armagan784db772019-10-08 15:05:38 +0100714 offset += uint32_t_size;
Jan Eilersb884ea42019-10-16 09:54:15 +0100715 WriteUint32(buffer, offset, packetHeader.second);
Sadik Armagan784db772019-10-08 15:05:38 +0100716 offset += uint32_t_size;
717
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000718 // Write the stream header
719 uint8_t streamVersion = 4;
720 uint8_t pointerBytes = boost::numeric_cast<uint8_t>(uint64_t_size); // All GUIDs are uint64_t
Colm Donelan5bb3d8a2020-05-12 16:36:46 +0100721 uint8_t threadIdBytes = boost::numeric_cast<uint8_t>(ThreadIdSize);
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000722 switch (threadIdBytes)
Sadik Armagan784db772019-10-08 15:05:38 +0100723 {
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000724 case 4: // Typically Windows and Android
725 case 8: // Typically Linux
726 break; // Valid values
727 default:
728 return TimelinePacketStatus::Error; // Invalid value
729 }
730 WriteUint8(buffer, offset, streamVersion);
731 offset += uint8_t_size;
732 WriteUint8(buffer, offset, pointerBytes);
733 offset += uint8_t_size;
734 WriteUint8(buffer, offset, threadIdBytes);
735 offset += uint8_t_size;
Sadik Armagan784db772019-10-08 15:05:38 +0100736
Matteo Martincigh34a407d2019-11-06 15:30:54 +0000737 // Write the SWTrace directory
738 uint32_t numberOfDeclarations = boost::numeric_cast<uint32_t>(timelineDirectoryMessages.size());
739 WriteUint32(buffer, offset, numberOfDeclarations); // Number of declarations
740 offset += uint32_t_size;
741 for (uint32_t i : swTraceBuffer)
742 {
743 WriteUint32(buffer, offset, i); // Message declarations
744 offset += uint32_t_size;
Sadik Armagan784db772019-10-08 15:05:38 +0100745 }
746
747 // Update the number of bytes written
748 numberOfBytesWritten = timelineDirectoryPacketSize;
749
750 return TimelinePacketStatus::Ok;
751}
752
Keith Davis97da5e22020-03-05 16:25:28 +0000753TimelinePacketStatus WriteTimelineEventClassBinary(uint64_t profilingGuid,
754 unsigned char* buffer,
755 unsigned int remainingBufferSize,
756 unsigned int& numberOfBytesWritten)
Jan Eilers92fa15b2019-10-15 15:23:25 +0100757{
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100758 // Initialize the output value
Jan Eilers92fa15b2019-10-15 15:23:25 +0100759 numberOfBytesWritten = 0;
760
761 // Check that the given buffer is valid
Keith Davis97da5e22020-03-05 16:25:28 +0000762 if (buffer == nullptr || remainingBufferSize == 0)
Jan Eilers92fa15b2019-10-15 15:23:25 +0100763 {
764 return TimelinePacketStatus::BufferExhaustion;
765 }
766
767 // Utils
768 unsigned int uint32_t_size = sizeof(uint32_t);
769 unsigned int uint64_t_size = sizeof(uint64_t);
770
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100771 // decl_id of the timeline message
772 uint32_t declId = 2;
Jan Eilers92fa15b2019-10-15 15:23:25 +0100773
774 // Calculate the length of the data (in bytes)
Keith Davis97da5e22020-03-05 16:25:28 +0000775 unsigned int dataSize = uint32_t_size + uint64_t_size; // decl_id + Profiling GUID
Jan Eilers92fa15b2019-10-15 15:23:25 +0100776
Keith Davis97da5e22020-03-05 16:25:28 +0000777 // Check whether the timeline binary fits in the given buffer
778 if (dataSize > remainingBufferSize)
Jan Eilers92fa15b2019-10-15 15:23:25 +0100779 {
780 return TimelinePacketStatus::BufferExhaustion;
781 }
782
Jan Eilers92fa15b2019-10-15 15:23:25 +0100783 // Initialize the offset for writing in the buffer
784 unsigned int offset = 0;
785
Keith Davis97da5e22020-03-05 16:25:28 +0000786 // Write the timeline binary payload to the buffer
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100787 WriteUint32(buffer, offset, declId); // decl_id
Jan Eilers92fa15b2019-10-15 15:23:25 +0100788 offset += uint32_t_size;
789 WriteUint64(buffer, offset, profilingGuid); // Profiling GUID
790
791 // Update the number of bytes written
Keith Davis97da5e22020-03-05 16:25:28 +0000792 numberOfBytesWritten = dataSize;
Jan Eilers92fa15b2019-10-15 15:23:25 +0100793
794 return TimelinePacketStatus::Ok;
795}
796
Keith Davis97da5e22020-03-05 16:25:28 +0000797TimelinePacketStatus WriteTimelineEventBinary(uint64_t timestamp,
798 std::thread::id threadId,
799 uint64_t profilingGuid,
800 unsigned char* buffer,
801 unsigned int remainingBufferSize,
802 unsigned int& numberOfBytesWritten)
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100803{
804 // Initialize the output value
805 numberOfBytesWritten = 0;
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100806 // Check that the given buffer is valid
Keith Davis97da5e22020-03-05 16:25:28 +0000807 if (buffer == nullptr || remainingBufferSize == 0)
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100808 {
809 return TimelinePacketStatus::BufferExhaustion;
810 }
811
812 // Utils
813 unsigned int uint32_t_size = sizeof(uint32_t);
814 unsigned int uint64_t_size = sizeof(uint64_t);
815
816 // decl_id of the timeline message
817 uint32_t declId = 4;
818
819 // Calculate the length of the data (in bytes)
Keith Davis97da5e22020-03-05 16:25:28 +0000820 unsigned int timelineEventDataLength = uint32_t_size + // decl_id
821 uint64_t_size + // Timestamp
Colm Donelan5bb3d8a2020-05-12 16:36:46 +0100822 ThreadIdSize + // Thread id
Keith Davis97da5e22020-03-05 16:25:28 +0000823 uint64_t_size; // Profiling GUID
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100824
825 // Check whether the timeline binary packet fits in the given buffer
Keith Davis97da5e22020-03-05 16:25:28 +0000826 if (timelineEventDataLength > remainingBufferSize)
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100827 {
828 return TimelinePacketStatus::BufferExhaustion;
829 }
830
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100831 // Initialize the offset for writing in the buffer
832 unsigned int offset = 0;
833
Keith Davis97da5e22020-03-05 16:25:28 +0000834 // Write the timeline binary payload to the buffer
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100835 WriteUint32(buffer, offset, declId); // decl_id
836 offset += uint32_t_size;
837 WriteUint64(buffer, offset, timestamp); // Timestamp
838 offset += uint64_t_size;
Colm Donelan5bb3d8a2020-05-12 16:36:46 +0100839 WriteBytes(buffer, offset, &threadId, ThreadIdSize); // Thread id
840 offset += ThreadIdSize;
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100841 WriteUint64(buffer, offset, profilingGuid); // Profiling GUID
842 offset += uint64_t_size;
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100843 // Update the number of bytes written
Keith Davis97da5e22020-03-05 16:25:28 +0000844 numberOfBytesWritten = timelineEventDataLength;
Matteo Martincigh8844c2f2019-10-16 10:29:17 +0100845
846 return TimelinePacketStatus::Ok;
847}
848
Keith Davis3201eea2019-10-24 17:30:41 +0100849std::string CentreAlignFormatting(const std::string& stringToPass, const int spacingWidth)
850{
851 std::stringstream outputStream, centrePadding;
852 int padding = spacingWidth - static_cast<int>(stringToPass.size());
853
854 for (int i = 0; i < padding / 2; ++i)
855 {
856 centrePadding << " ";
857 }
858
859 outputStream << centrePadding.str() << stringToPass << centrePadding.str();
860
861 if (padding > 0 && padding %2 != 0)
862 {
863 outputStream << " ";
864 }
865
866 return outputStream.str();
867}
868
869void PrintDeviceDetails(const std::pair<const unsigned short, std::unique_ptr<Device>>& devicePair)
870{
871 std::string body;
872
873 body.append(CentreAlignFormatting(devicePair.second->m_Name, 20));
874 body.append(" | ");
875 body.append(CentreAlignFormatting(std::to_string(devicePair.first), 13));
876 body.append(" | ");
877 body.append(CentreAlignFormatting(std::to_string(devicePair.second->m_Cores), 10));
878 body.append("\n");
879
880 std::cout << std::string(body.size(), '-') << "\n";
881 std::cout<< body;
882}
883
884void PrintCounterSetDetails(const std::pair<const unsigned short, std::unique_ptr<CounterSet>>& counterSetPair)
885{
886 std::string body;
887
888 body.append(CentreAlignFormatting(counterSetPair.second->m_Name, 20));
889 body.append(" | ");
890 body.append(CentreAlignFormatting(std::to_string(counterSetPair.first), 13));
891 body.append(" | ");
892 body.append(CentreAlignFormatting(std::to_string(counterSetPair.second->m_Count), 10));
893 body.append("\n");
894
895 std::cout << std::string(body.size(), '-') << "\n";
896
897 std::cout<< body;
898}
899
900void PrintCounterDetails(std::shared_ptr<Counter>& counter)
901{
902 std::string body;
903
904 body.append(CentreAlignFormatting(counter->m_Name, 20));
905 body.append(" | ");
906 body.append(CentreAlignFormatting(counter->m_Description, 50));
907 body.append(" | ");
908 body.append(CentreAlignFormatting(counter->m_Units, 14));
909 body.append(" | ");
910 body.append(CentreAlignFormatting(std::to_string(counter->m_Uid), 6));
911 body.append(" | ");
912 body.append(CentreAlignFormatting(std::to_string(counter->m_MaxCounterUid), 10));
913 body.append(" | ");
914 body.append(CentreAlignFormatting(std::to_string(counter->m_Class), 8));
915 body.append(" | ");
916 body.append(CentreAlignFormatting(std::to_string(counter->m_Interpolation), 14));
917 body.append(" | ");
918 body.append(CentreAlignFormatting(std::to_string(counter->m_Multiplier), 20));
919 body.append(" | ");
920 body.append(CentreAlignFormatting(std::to_string(counter->m_CounterSetUid), 16));
921 body.append(" | ");
922 body.append(CentreAlignFormatting(std::to_string(counter->m_DeviceUid), 14));
923
924 body.append("\n");
925
926 std::cout << std::string(body.size(), '-') << "\n";
927
928 std::cout << body;
929}
930
931void PrintCategoryDetails(const std::unique_ptr<Category>& category,
932 std::unordered_map<unsigned short, std::shared_ptr<Counter>> counterMap)
933{
934 std::string categoryBody;
935 std::string categoryHeader;
936
937 categoryHeader.append(CentreAlignFormatting("Name", 20));
938 categoryHeader.append(" | ");
Keith Davis3201eea2019-10-24 17:30:41 +0100939 categoryHeader.append(CentreAlignFormatting("Event Count", 14));
940 categoryHeader.append("\n");
941
942 categoryBody.append(CentreAlignFormatting(category->m_Name, 20));
943 categoryBody.append(" | ");
Keith Davis3201eea2019-10-24 17:30:41 +0100944 categoryBody.append(CentreAlignFormatting(std::to_string(category->m_Counters.size()), 14));
945
946 std::cout << "\n" << "\n";
947 std::cout << CentreAlignFormatting("CATEGORY", static_cast<int>(categoryHeader.size()));
948 std::cout << "\n";
949 std::cout << std::string(categoryHeader.size(), '=') << "\n";
950
951 std::cout << categoryHeader;
952
953 std::cout << std::string(categoryBody.size(), '-') << "\n";
954
955 std::cout << categoryBody;
956
957 std::string counterHeader;
958
959 counterHeader.append(CentreAlignFormatting("Counter Name", 20));
960 counterHeader.append(" | ");
961 counterHeader.append(CentreAlignFormatting("Description", 50));
962 counterHeader.append(" | ");
963 counterHeader.append(CentreAlignFormatting("Units", 14));
964 counterHeader.append(" | ");
965 counterHeader.append(CentreAlignFormatting("UID", 6));
966 counterHeader.append(" | ");
967 counterHeader.append(CentreAlignFormatting("Max UID", 10));
968 counterHeader.append(" | ");
969 counterHeader.append(CentreAlignFormatting("Class", 8));
970 counterHeader.append(" | ");
971 counterHeader.append(CentreAlignFormatting("Interpolation", 14));
972 counterHeader.append(" | ");
973 counterHeader.append(CentreAlignFormatting("Multiplier", 20));
974 counterHeader.append(" | ");
975 counterHeader.append(CentreAlignFormatting("Counter set UID", 16));
976 counterHeader.append(" | ");
977 counterHeader.append(CentreAlignFormatting("Device UID", 14));
978 counterHeader.append("\n");
979
980 std::cout << "\n" << "\n";
981 std::cout << CentreAlignFormatting("EVENTS IN CATEGORY: " + category->m_Name,
982 static_cast<int>(counterHeader.size()));
983 std::cout << "\n";
984 std::cout << std::string(counterHeader.size(), '=') << "\n";
985 std::cout << counterHeader;
986 for (auto& it: category->m_Counters) {
987 auto search = counterMap.find(it);
988 if(search != counterMap.end()) {
989 PrintCounterDetails(search->second);
990 }
991 }
992}
993
994void PrintCounterDirectory(ICounterDirectory& counterDirectory)
995{
996 std::string devicesHeader;
997
998 devicesHeader.append(CentreAlignFormatting("Device name", 20));
999 devicesHeader.append(" | ");
1000 devicesHeader.append(CentreAlignFormatting("UID", 13));
1001 devicesHeader.append(" | ");
1002 devicesHeader.append(CentreAlignFormatting("Cores", 10));
1003 devicesHeader.append("\n");
1004
1005 std::cout << "\n" << "\n";
1006 std::cout << CentreAlignFormatting("DEVICES", static_cast<int>(devicesHeader.size()));
1007 std::cout << "\n";
1008 std::cout << std::string(devicesHeader.size(), '=') << "\n";
1009 std::cout << devicesHeader;
1010 for (auto& it: counterDirectory.GetDevices()) {
1011 PrintDeviceDetails(it);
1012 }
1013
1014 std::string counterSetHeader;
1015
1016 counterSetHeader.append(CentreAlignFormatting("Counter set name", 20));
1017 counterSetHeader.append(" | ");
1018 counterSetHeader.append(CentreAlignFormatting("UID", 13));
1019 counterSetHeader.append(" | ");
1020 counterSetHeader.append(CentreAlignFormatting("Count", 10));
1021 counterSetHeader.append("\n");
1022
1023 std::cout << "\n" << "\n";
1024 std::cout << CentreAlignFormatting("COUNTER SETS", static_cast<int>(counterSetHeader.size()));
1025 std::cout << "\n";
1026 std::cout << std::string(counterSetHeader.size(), '=') << "\n";
1027
1028 std::cout << counterSetHeader;
1029
1030 for (auto& it: counterDirectory.GetCounterSets()) {
1031 PrintCounterSetDetails(it);
1032 }
1033
1034 auto counters = counterDirectory.GetCounters();
1035 for (auto& it: counterDirectory.GetCategories()) {
1036 PrintCategoryDetails(it, counters);
1037 }
1038 std::cout << "\n";
1039}
1040
Matteo Martincigh5dc816e2019-11-04 14:05:28 +00001041uint64_t GetTimestamp()
1042{
1043#if USE_CLOCK_MONOTONIC_RAW
1044 using clock = MonotonicClockRaw;
1045#else
1046 using clock = std::chrono::steady_clock;
1047#endif
1048
1049 // Take a timestamp
Finn Williamsd9ba1a72020-04-16 15:32:28 +01001050 auto timestamp = std::chrono::duration_cast<std::chrono::nanoseconds>(clock::now().time_since_epoch());
Matteo Martincigh5dc816e2019-11-04 14:05:28 +00001051
Finn Williamsd9ba1a72020-04-16 15:32:28 +01001052 return static_cast<uint64_t>(timestamp.count());
Matteo Martincigh5dc816e2019-11-04 14:05:28 +00001053}
Keith Davis3201eea2019-10-24 17:30:41 +01001054
Jim Flynn4e755a52020-03-29 17:48:26 +01001055Packet ReceivePacket(const unsigned char* buffer, uint32_t length)
1056{
1057 if (buffer == nullptr)
1058 {
1059 throw armnnProfiling::ProfilingException("data buffer is nullptr");
1060 }
1061 if (length < 8)
1062 {
1063 throw armnnProfiling::ProfilingException("length of data buffer is less than 8");
1064 }
1065
1066 uint32_t metadataIdentifier = 0;
1067 std::memcpy(&metadataIdentifier, buffer, sizeof(metadataIdentifier));
1068
1069 uint32_t dataLength = 0;
1070 std::memcpy(&dataLength, buffer + 4u, sizeof(dataLength));
1071
1072 std::unique_ptr<unsigned char[]> packetData;
1073 if (dataLength > 0)
1074 {
1075 packetData = std::make_unique<unsigned char[]>(dataLength);
1076 std::memcpy(packetData.get(), buffer + 8u, dataLength);
1077 }
1078
1079 return Packet(metadataIdentifier, dataLength, packetData);
1080}
1081
Ferran Balaguer73882172019-09-02 16:39:42 +01001082} // namespace profiling
1083
Matteo Martincigh149528e2019-09-05 12:02:04 +01001084} // namespace armnn
Matteo Martincigh378bbfc2019-11-04 14:05:28 +00001085
1086namespace std
1087{
1088
1089bool operator==(const std::vector<uint8_t>& left, std::thread::id right)
1090{
1091 return std::memcmp(left.data(), &right, left.size()) == 0;
1092}
1093
1094} // namespace std