blob: 63514c409b1bf713f022f0ca661531ad1b01dd0b [file] [log] [blame]
Georgios Pinitas84b51ad2017-11-07 13:24:57 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2019 Arm Limited.
Georgios Pinitas84b51ad2017-11-07 13:24:57 +00003 *
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_MEMORY_H
25#define ARM_COMPUTE_MEMORY_H
Georgios Pinitas84b51ad2017-11-07 13:24:57 +000026
Georgios Pinitasdf310362018-11-14 13:16:56 +000027#include "arm_compute/runtime/IMemory.h"
Georgios Pinitas99d40952018-04-23 16:26:46 +010028#include "arm_compute/runtime/IMemoryRegion.h"
29
Georgios Pinitas84b51ad2017-11-07 13:24:57 +000030#include <cstddef>
31#include <memory>
32
33namespace arm_compute
34{
35/** CPU implementation of memory object */
Georgios Pinitasdf310362018-11-14 13:16:56 +000036class Memory : public IMemory
Georgios Pinitas84b51ad2017-11-07 13:24:57 +000037{
38public:
39 /** Default Constructor */
40 Memory();
41 /** Default Constructor
42 *
Georgios Pinitas84b51ad2017-11-07 13:24:57 +000043 * @param[in] memory Memory to be imported
44 */
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010045 Memory(const std::shared_ptr<IMemoryRegion> &memory);
Georgios Pinitas84b51ad2017-11-07 13:24:57 +000046 /** Default Constructor
47 *
48 * @note Ownership of the memory is not transferred to this object.
49 * Thus management (allocate/free) should be done by the client.
50 *
51 * @param[in] memory Memory to be imported
52 */
Georgios Pinitas99d40952018-04-23 16:26:46 +010053 Memory(IMemoryRegion *memory);
Georgios Pinitas84b51ad2017-11-07 13:24:57 +000054 /** Allow instances of this class to be copied */
55 Memory(const Memory &) = default;
56 /** Allow instances of this class to be copy assigned */
57 Memory &operator=(const Memory &) = default;
58 /** Allow instances of this class to be moved */
59 Memory(Memory &&) noexcept = default;
60 /** Allow instances of this class to be move assigned */
61 Memory &operator=(Memory &&) noexcept = default;
Georgios Pinitas84b51ad2017-11-07 13:24:57 +000062
Georgios Pinitasdf310362018-11-14 13:16:56 +000063 // Inherited methods overridden:
64 IMemoryRegion *region() final;
65 IMemoryRegion *region() const final;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010066 void set_region(IMemoryRegion *region) final;
67 void set_owned_region(std::unique_ptr<IMemoryRegion> region) final;
Georgios Pinitas99d40952018-04-23 16:26:46 +010068
69private:
70 IMemoryRegion *_region;
71 std::shared_ptr<IMemoryRegion> _region_owned;
Georgios Pinitas84b51ad2017-11-07 13:24:57 +000072};
Georgios Pinitasdf310362018-11-14 13:16:56 +000073} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +000074#endif /* ARM_COMPUTE_MEMORY_H */