summaryrefslogtreecommitdiff
path: root/src/mem/packet_access.hh
diff options
context:
space:
mode:
authorAndreas Sandberg <andreas.sandberg@arm.com>2015-08-07 09:59:28 +0100
committerAndreas Sandberg <andreas.sandberg@arm.com>2015-08-07 09:59:28 +0100
commitbbb3abc16711e14858094b64a2eb1eb53204dded (patch)
treeb01975e299b0eedf7561ee925aee9830b949a54f /src/mem/packet_access.hh
parentce8939a97e26eb96cfe0604e737c0b155ba07656 (diff)
downloadgem5-bbb3abc16711e14858094b64a2eb1eb53204dded.tar.xz
mem: Cleanup packet accessor methods
The Packet::get() and Packet::set() methods both have very strange semantics. Currently, they automatically convert between the guest system's endianness and the host system's endianness. This behavior is usually undesired and unexpected. This patch introduces three new method pairs to access data: * getLE() / setLE() - Get data stored as little endian. * getBE() / setBE() - Get data stored as big endian. * get(ByteOrder) / set(v, ByteOrder) - Configurable endianness For example, a little endian device that is receiving a write request will use teh getLE() method to get the data from the packet. The old interface will be deprecated once all existing devices have been ported to the new interface.
Diffstat (limited to 'src/mem/packet_access.hh')
-rw-r--r--src/mem/packet_access.hh100
1 files changed, 91 insertions, 9 deletions
diff --git a/src/mem/packet_access.hh b/src/mem/packet_access.hh
index 9e6f1cbb1..1a2db6921 100644
--- a/src/mem/packet_access.hh
+++ b/src/mem/packet_access.hh
@@ -1,4 +1,16 @@
/*
+ * Copyright (c) 2015 ARM Limited
+ * All rights reserved
+ *
+ * The license below extends only to copyright in the software and shall
+ * not be construed as granting a license to any other intellectual
+ * property including but not limited to intellectual property relating
+ * to a hardware implementation of the functionality of the software
+ * licensed hereunder. You may use the software subject to the license
+ * terms below provided that you ensure that this notice is replicated
+ * unmodified and in its entirety in all distributions of the software,
+ * modified or unmodified, in source code or in binary form.
+ *
* Copyright (c) 2006 The Regents of The University of Michigan
* All rights reserved.
*
@@ -27,6 +39,7 @@
*
* Authors: Ali Saidi
* Nathan Binkert
+ * Andreas Sandberg
*/
#include "arch/isa_traits.hh"
@@ -37,29 +50,98 @@
#ifndef __MEM_PACKET_ACCESS_HH__
#define __MEM_PACKET_ACCESS_HH__
-// The memory system needs to have an endianness. This is the easiest
-// way to deal with it for now. At some point, we will have to remove
-// these functions and make the users do their own byte swapping since
-// the memory system does not in fact have an endianness.
-/** return the value of what is pointed to in the packet. */
template <typename T>
inline T
-Packet::get() const
+Packet::getRaw() const
{
assert(flags.isSet(STATIC_DATA|DYNAMIC_DATA));
assert(sizeof(T) <= size);
- return TheISA::gtoh(*(T*)data);
+ return *(T*)data;
}
-/** set the value in the data pointer to v. */
template <typename T>
inline void
-Packet::set(T v)
+Packet::setRaw(T v)
{
assert(flags.isSet(STATIC_DATA|DYNAMIC_DATA));
assert(sizeof(T) <= size);
*(T*)data = TheISA::htog(v);
}
+
+template <typename T>
+inline T
+Packet::getBE() const
+{
+ return betoh(getRaw<T>());
+}
+
+template <typename T>
+inline T
+Packet::getLE() const
+{
+ return letoh(getRaw<T>());
+}
+
+template <typename T>
+inline T
+Packet::get(ByteOrder endian) const
+{
+ switch (endian) {
+ case BigEndianByteOrder:
+ return getBE<T>();
+
+ case LittleEndianByteOrder:
+ return getLE<T>();
+
+ default:
+ panic("Illegal byte order in Packet::get()\n");
+ };
+}
+
+template <typename T>
+inline T
+Packet::get() const
+{
+ return TheISA::gtoh(getRaw<T>());
+}
+
+template <typename T>
+inline void
+Packet::setBE(T v)
+{
+ setRaw(htobe(v));
+}
+
+template <typename T>
+inline void
+Packet::setLE(T v)
+{
+ setRaw(htole(v));
+}
+
+template <typename T>
+inline void
+Packet::set(T v, ByteOrder endian)
+{
+ switch (endian) {
+ case BigEndianByteOrder:
+ return setBE<T>(v);
+
+ case LittleEndianByteOrder:
+ return setLE<T>(v);
+
+ default:
+ panic("Illegal byte order in Packet::set()\n");
+ };
+}
+
+template <typename T>
+inline void
+Packet::set(T v)
+{
+ setRaw(TheISA::htog(v));
+}
+
#endif //__MEM_PACKET_ACCESS_HH__