aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/Packet.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/Packet.hpp')
-rw-r--r--src/profiling/Packet.hpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/profiling/Packet.hpp b/src/profiling/Packet.hpp
new file mode 100644
index 0000000000..0d2ba42af5
--- /dev/null
+++ b/src/profiling/Packet.hpp
@@ -0,0 +1,45 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+#pragma once
+
+
+#include <boost/log/trivial.hpp>
+
+#include <armnn/Exceptions.hpp>
+
+class Packet
+{
+public:
+ Packet(uint32_t header, uint32_t length, const char* data)
+ : m_Header(header), m_Length(length), m_Data(data)
+ {
+ m_PacketId = ((header >> 16) & 1023);
+ m_PacketFamily = (header >> 26);
+
+ if (length == 0)
+ {
+ if (m_Data != nullptr)
+ {
+ throw armnn::Exception("Data should be null");
+ }
+ }
+ };
+
+ uint32_t GetHeader() const;
+ uint32_t GetPacketFamily() const;
+ uint32_t GetPacketId() const;
+ uint32_t GetLength() const;
+ const char* GetData();
+
+ uint32_t GetPacketClass() const;
+ uint32_t GetPacketType() const;
+
+private:
+ uint32_t m_Header;
+ uint32_t m_PacketFamily;
+ uint32_t m_PacketId;
+ uint32_t m_Length;
+ const char* m_Data;
+}; \ No newline at end of file