blob: 4d74555f4e556981a42f11098ba0963ef73bfe90 [file] [log] [blame]
Georgios Pinitasdf310362018-11-14 13:16:56 +00001/*
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +01002 * Copyright (c) 2018-2020 Arm Limited.
Georgios Pinitasdf310362018-11-14 13:16:56 +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 */
24#include "arm_compute/runtime/GLES_COMPUTE/GCMemory.h"
25
Georgios Pinitasdf310362018-11-14 13:16:56 +000026#include "arm_compute/runtime/GLES_COMPUTE/GCMemoryRegion.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010027#include "support/Cast.h"
Georgios Pinitasdf310362018-11-14 13:16:56 +000028
29namespace arm_compute
30{
31GCMemory::GCMemory()
32 : _region(nullptr), _region_owned(nullptr)
33{
34}
35
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010036GCMemory::GCMemory(const std::shared_ptr<IGCMemoryRegion> &memory)
37 : _region(nullptr), _region_owned(memory)
Georgios Pinitasdf310362018-11-14 13:16:56 +000038{
39 _region_owned = memory;
40 _region = _region_owned.get();
41}
42
43GCMemory::GCMemory(IGCMemoryRegion *memory)
44 : _region(memory), _region_owned(nullptr)
45{
46 _region = memory;
47}
48
49IGCMemoryRegion *GCMemory::gc_region()
50{
51 return _region;
52}
53
54IGCMemoryRegion *GCMemory::gc_region() const
55{
56 return _region;
57}
58
59IMemoryRegion *GCMemory::region()
60{
61 return _region;
62}
63
64IMemoryRegion *GCMemory::region() const
65{
66 return _region;
67}
68
69void GCMemory::set_region(IMemoryRegion *region)
70{
71 auto gc_region = utils::cast::polymorphic_downcast<IGCMemoryRegion *>(region);
72 _region_owned = nullptr;
73 _region = gc_region;
74}
75
76void GCMemory::set_owned_region(std::unique_ptr<IMemoryRegion> region)
77{
78 _region_owned = utils::cast::polymorphic_downcast_unique_ptr<IGCMemoryRegion>(std::move(region));
79 _region = _region_owned.get();
80}
81} // namespace arm_compute