blob: 8f3c1a84bad617a92a61e5f82ac5749d656ea267 [file] [log] [blame]
Georgios Pinitas511347a2017-09-18 18:33:07 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Georgios Pinitas511347a2017-09-18 18:33:07 +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 */
Georgios Pinitas511347a2017-09-18 18:33:07 +010024#include "arm_compute/runtime/OffsetMemoryPool.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/runtime/IAllocator.h"
28#include "arm_compute/runtime/IMemoryPool.h"
Georgios Pinitasdf310362018-11-14 13:16:56 +000029#include "arm_compute/runtime/MemoryRegion.h"
Georgios Pinitas511347a2017-09-18 18:33:07 +010030#include "arm_compute/runtime/Types.h"
Georgios Pinitas511347a2017-09-18 18:33:07 +010031
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010032#include <algorithm>
33
Michalis Spyroucaa7dee2019-09-09 19:23:39 +010034namespace arm_compute
35{
Georgios Pinitas734151d2019-01-21 18:38:21 +000036OffsetMemoryPool::OffsetMemoryPool(IAllocator *allocator, BlobInfo blob_info)
37 : _allocator(allocator), _blob(), _blob_info(blob_info)
Georgios Pinitas511347a2017-09-18 18:33:07 +010038{
39 ARM_COMPUTE_ERROR_ON(!allocator);
Georgios Pinitas734151d2019-01-21 18:38:21 +000040 _blob = _allocator->make_region(blob_info.size, blob_info.alignment);
Georgios Pinitas511347a2017-09-18 18:33:07 +010041}
42
Michalis Spyroucaa7dee2019-09-09 19:23:39 +010043const BlobInfo &OffsetMemoryPool::info() const
44{
45 return _blob_info;
46}
47
Georgios Pinitas511347a2017-09-18 18:33:07 +010048void OffsetMemoryPool::acquire(MemoryMappings &handles)
49{
50 ARM_COMPUTE_ERROR_ON(_blob == nullptr);
51
52 // Set memory to handlers
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010053 for (auto &handle : handles)
Georgios Pinitas511347a2017-09-18 18:33:07 +010054 {
55 ARM_COMPUTE_ERROR_ON(handle.first == nullptr);
Georgios Pinitas734151d2019-01-21 18:38:21 +000056 handle.first->set_owned_region(_blob->extract_subregion(handle.second, _blob_info.size - handle.second));
Georgios Pinitas511347a2017-09-18 18:33:07 +010057 }
58}
59
60void OffsetMemoryPool::release(MemoryMappings &handles)
61{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010062 for (auto &handle : handles)
Georgios Pinitas511347a2017-09-18 18:33:07 +010063 {
64 ARM_COMPUTE_ERROR_ON(handle.first == nullptr);
Georgios Pinitasdf310362018-11-14 13:16:56 +000065 handle.first->set_region(nullptr);
Georgios Pinitas511347a2017-09-18 18:33:07 +010066 }
67}
68
69MappingType OffsetMemoryPool::mapping_type() const
70{
71 return MappingType::OFFSETS;
72}
73
74std::unique_ptr<IMemoryPool> OffsetMemoryPool::duplicate()
75{
76 ARM_COMPUTE_ERROR_ON(!_allocator);
Georgios Pinitas40f51a62020-11-21 03:04:18 +000077 return std::make_unique<OffsetMemoryPool>(_allocator, _blob_info);
Michalis Spyroucaa7dee2019-09-09 19:23:39 +010078}
Matthew Bentham92046462020-03-07 22:15:55 +000079} // namespace arm_compute