blob: f8a4898281e8e09411c4bf0784b3355d3f1b847d [file] [log] [blame]
Georgios Pinitas99d40952018-04-23 16:26:46 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Georgios Pinitas99d40952018-04-23 16:26:46 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_RUNTIME_MEMORY_REGION_H
25#define ARM_COMPUTE_RUNTIME_MEMORY_REGION_H
Georgios Pinitas99d40952018-04-23 16:26:46 +010026
Georgios Pinitas99d40952018-04-23 16:26:46 +010027#include "arm_compute/core/Error.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010028#include "arm_compute/runtime/IMemoryRegion.h"
Georgios Pinitas99d40952018-04-23 16:26:46 +010029
30#include <cstddef>
31
32namespace arm_compute
33{
34/** Memory region CPU implementation */
35class MemoryRegion final : public IMemoryRegion
36{
37public:
Georgios Pinitasdf310362018-11-14 13:16:56 +000038 /** Constructor
Georgios Pinitas99d40952018-04-23 16:26:46 +010039 *
Georgios Pinitas17b12302018-06-18 18:13:51 +010040 * @param[in] size Region size
41 * @param[in] alignment Alignment in bytes of the base pointer. Defaults to 0
Georgios Pinitas99d40952018-04-23 16:26:46 +010042 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010043 MemoryRegion(size_t size, size_t alignment = 0) : IMemoryRegion(size), _mem(nullptr), _ptr(nullptr)
Georgios Pinitas99d40952018-04-23 16:26:46 +010044 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010045 if (size != 0)
Georgios Pinitas99d40952018-04-23 16:26:46 +010046 {
Georgios Pinitas17b12302018-06-18 18:13:51 +010047 // Allocate backing memory
48 size_t space = size + alignment;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010049 _mem = std::shared_ptr<uint8_t>(new uint8_t[space](), [](uint8_t *ptr) { delete[] ptr; });
50 _ptr = _mem.get();
Georgios Pinitas17b12302018-06-18 18:13:51 +010051
52 // Calculate alignment offset
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010053 if (alignment != 0)
Georgios Pinitas17b12302018-06-18 18:13:51 +010054 {
55 void *aligned_ptr = _mem.get();
Georgios Pinitas40f51a62020-11-21 03:04:18 +000056 std::align(alignment, size, aligned_ptr, space);
Georgios Pinitasdf310362018-11-14 13:16:56 +000057 _ptr = aligned_ptr;
Georgios Pinitas17b12302018-06-18 18:13:51 +010058 }
Georgios Pinitas99d40952018-04-23 16:26:46 +010059 }
60 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010061 MemoryRegion(void *ptr, size_t size) : IMemoryRegion(size), _mem(nullptr), _ptr(nullptr)
Georgios Pinitasdf310362018-11-14 13:16:56 +000062 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010063 if (size != 0)
Georgios Pinitasdf310362018-11-14 13:16:56 +000064 {
65 _ptr = ptr;
66 }
67 }
Georgios Pinitas99d40952018-04-23 16:26:46 +010068 /** Prevent instances of this class from being copied (As this class contains pointers) */
69 MemoryRegion(const MemoryRegion &) = delete;
70 /** Default move constructor */
71 MemoryRegion(MemoryRegion &&) = default;
72 /** Prevent instances of this class from being copied (As this class contains pointers) */
73 MemoryRegion &operator=(const MemoryRegion &) = delete;
74 /** Default move assignment operator */
75 MemoryRegion &operator=(MemoryRegion &&) = default;
76
77 // Inherited methods overridden :
78 void *buffer() final
79 {
Georgios Pinitasdf310362018-11-14 13:16:56 +000080 return _ptr;
Georgios Pinitas99d40952018-04-23 16:26:46 +010081 }
Georgios Pinitas74ef1db2020-01-20 17:01:15 +000082 const void *buffer() const final
Georgios Pinitas99d40952018-04-23 16:26:46 +010083 {
Georgios Pinitasdf310362018-11-14 13:16:56 +000084 return _ptr;
Georgios Pinitas99d40952018-04-23 16:26:46 +010085 }
Georgios Pinitasdf310362018-11-14 13:16:56 +000086 std::unique_ptr<IMemoryRegion> extract_subregion(size_t offset, size_t size) final
Georgios Pinitas99d40952018-04-23 16:26:46 +010087 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010088 if (_ptr != nullptr && (offset < _size) && (_size - offset >= size))
Georgios Pinitasdf310362018-11-14 13:16:56 +000089 {
Georgios Pinitas40f51a62020-11-21 03:04:18 +000090 return std::make_unique<MemoryRegion>(static_cast<uint8_t *>(_ptr) + offset, size);
Georgios Pinitasdf310362018-11-14 13:16:56 +000091 }
92 else
93 {
94 return nullptr;
95 }
Georgios Pinitas99d40952018-04-23 16:26:46 +010096 }
97
98protected:
99 std::shared_ptr<uint8_t> _mem;
Georgios Pinitasdf310362018-11-14 13:16:56 +0000100 void *_ptr;
Georgios Pinitas99d40952018-04-23 16:26:46 +0100101};
102} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000103#endif /* ARM_COMPUTE_RUNTIME_MEMORY_REGION_H */