blob: bf4e1719def69cfb6188b8809c90d0d17c0fde60 [file] [log] [blame]
Georgios Pinitas99d40952018-04-23 16:26:46 +01001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
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 */
24#ifndef __ARM_COMPUTE_RUNTIME_MEMORY_REGION_H__
25#define __ARM_COMPUTE_RUNTIME_MEMORY_REGION_H__
26
27#include "arm_compute/runtime/IMemoryRegion.h"
28
29#include "arm_compute/core/Error.h"
30
31#include <cstddef>
32
33namespace arm_compute
34{
35/** Memory region CPU implementation */
36class MemoryRegion final : public IMemoryRegion
37{
38public:
39 /** Default constructor
40 *
41 * @param[in] size Region size
42 */
43 MemoryRegion(size_t size)
44 : IMemoryRegion(size), _mem(nullptr), _ptr(nullptr)
45 {
46 if(size != 0)
47 {
48 _mem = std::shared_ptr<uint8_t>(new uint8_t[size](), [](uint8_t *ptr)
49 {
50 delete[] ptr;
51 });
52 _ptr = _mem.get();
53 }
54 }
55 /** Prevent instances of this class from being copied (As this class contains pointers) */
56 MemoryRegion(const MemoryRegion &) = delete;
57 /** Default move constructor */
58 MemoryRegion(MemoryRegion &&) = default;
59 /** Prevent instances of this class from being copied (As this class contains pointers) */
60 MemoryRegion &operator=(const MemoryRegion &) = delete;
61 /** Default move assignment operator */
62 MemoryRegion &operator=(MemoryRegion &&) = default;
63
64 // Inherited methods overridden :
65 void *buffer() final
66 {
67 return _mem.get();
68 }
69 void *buffer() const final
70 {
71 return _mem.get();
72 }
73 void **handle() final
74 {
75 return reinterpret_cast<void **>(&_mem);
76 }
77
78protected:
79 std::shared_ptr<uint8_t> _mem;
80 uint8_t *_ptr;
81};
82} // namespace arm_compute
83#endif /* __ARM_COMPUTE_RUNTIME_MEMORY_REGION_H__ */