blob: 677c55c7c46edc06dde9ea57f7d68afa6a93f42a [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 */
24#include <algorithm>
25
26#include "arm_compute/runtime/OffsetMemoryPool.h"
27
28#include "arm_compute/core/Error.h"
29#include "arm_compute/runtime/IAllocator.h"
30#include "arm_compute/runtime/IMemoryPool.h"
Georgios Pinitasdf310362018-11-14 13:16:56 +000031#include "arm_compute/runtime/MemoryRegion.h"
Georgios Pinitas511347a2017-09-18 18:33:07 +010032#include "arm_compute/runtime/Types.h"
Matthew Bentham92046462020-03-07 22:15:55 +000033#include "support/MemorySupport.h"
Georgios Pinitas511347a2017-09-18 18:33:07 +010034
Michalis Spyroucaa7dee2019-09-09 19:23:39 +010035namespace arm_compute
36{
Georgios Pinitas734151d2019-01-21 18:38:21 +000037OffsetMemoryPool::OffsetMemoryPool(IAllocator *allocator, BlobInfo blob_info)
38 : _allocator(allocator), _blob(), _blob_info(blob_info)
Georgios Pinitas511347a2017-09-18 18:33:07 +010039{
40 ARM_COMPUTE_ERROR_ON(!allocator);
Georgios Pinitas734151d2019-01-21 18:38:21 +000041 _blob = _allocator->make_region(blob_info.size, blob_info.alignment);
Georgios Pinitas511347a2017-09-18 18:33:07 +010042}
43
Michalis Spyroucaa7dee2019-09-09 19:23:39 +010044const BlobInfo &OffsetMemoryPool::info() const
45{
46 return _blob_info;
47}
48
Georgios Pinitas511347a2017-09-18 18:33:07 +010049void OffsetMemoryPool::acquire(MemoryMappings &handles)
50{
51 ARM_COMPUTE_ERROR_ON(_blob == nullptr);
52
53 // Set memory to handlers
54 for(auto &handle : handles)
55 {
56 ARM_COMPUTE_ERROR_ON(handle.first == nullptr);
Georgios Pinitas734151d2019-01-21 18:38:21 +000057 handle.first->set_owned_region(_blob->extract_subregion(handle.second, _blob_info.size - handle.second));
Georgios Pinitas511347a2017-09-18 18:33:07 +010058 }
59}
60
61void OffsetMemoryPool::release(MemoryMappings &handles)
62{
63 for(auto &handle : handles)
64 {
65 ARM_COMPUTE_ERROR_ON(handle.first == nullptr);
Georgios Pinitasdf310362018-11-14 13:16:56 +000066 handle.first->set_region(nullptr);
Georgios Pinitas511347a2017-09-18 18:33:07 +010067 }
68}
69
70MappingType OffsetMemoryPool::mapping_type() const
71{
72 return MappingType::OFFSETS;
73}
74
75std::unique_ptr<IMemoryPool> OffsetMemoryPool::duplicate()
76{
77 ARM_COMPUTE_ERROR_ON(!_allocator);
Georgios Pinitas734151d2019-01-21 18:38:21 +000078 return support::cpp14::make_unique<OffsetMemoryPool>(_allocator, _blob_info);
Michalis Spyroucaa7dee2019-09-09 19:23:39 +010079}
Matthew Bentham92046462020-03-07 22:15:55 +000080} // namespace arm_compute