From b78f216c157c763c208d390b609f0cf70bb45576 Mon Sep 17 00:00:00 2001 From: Andreas Sandberg Date: Fri, 9 Feb 2018 12:48:37 +0000 Subject: mem: Add PortProxy read/write helper with explicit endianness Change-Id: Ia9a11ca68b2892dafd02f2c37324b99b35c77d34 Signed-off-by: Andreas Sandberg Reviewed-by: Nikos Nikoleris Reviewed-by: Jack Travaglini Reviewed-on: https://gem5-review.googlesource.com/8146 Reviewed-by: Jason Lowe-Power --- src/mem/port_proxy.hh | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) (limited to 'src/mem') diff --git a/src/mem/port_proxy.hh b/src/mem/port_proxy.hh index e9ddeecbf..ac1873b3c 100644 --- a/src/mem/port_proxy.hh +++ b/src/mem/port_proxy.hh @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2013 ARM Limited + * Copyright (c) 2011-2013, 2018 ARM Limited * All rights reserved * * The license below extends only to copyright in the software and shall @@ -123,6 +123,20 @@ class PortProxy template void write(Addr address, T data) const; + /** + * Read sizeof(T) bytes from address and return as object T. + * Performs selected endianness transform. + */ + template + T readGtoH(Addr address, ByteOrder guest_byte_order) const; + + /** + * Write object T to address. Writes sizeof(T) bytes. + * Performs selected endianness transform. + */ + template + void writeHtoG(Addr address, T data, ByteOrder guest_byte_order) const; + #if THE_ISA != NULL_ISA /** * Read sizeof(T) bytes from address and return as object T. @@ -157,6 +171,23 @@ PortProxy::write(Addr address, T data) const writeBlob(address, (uint8_t*)&data, sizeof(T)); } +template +T +PortProxy::readGtoH(Addr address, ByteOrder byte_order) const +{ + T data; + readBlob(address, (uint8_t*)&data, sizeof(T)); + return gtoh(data, byte_order); +} + +template +void +PortProxy::writeHtoG(Addr address, T data, ByteOrder byte_order) const +{ + data = htog(data, byte_order); + writeBlob(address, (uint8_t*)&data, sizeof(T)); +} + #if THE_ISA != NULL_ISA template T -- cgit v1.2.3