blob: d71d787c88d8f7106d5b3cf5055405d858d3ff4c [file] [log] [blame]
Georgios Pinitas511347a2017-09-18 18:33:07 +01001/*
Georgios Pinitas40958ad2019-09-18 12:04:56 +01002 * Copyright (c) 2017-2019 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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_ISIMPLELIFETIMEMANAGER_H
25#define ARM_COMPUTE_ISIMPLELIFETIMEMANAGER_H
Georgios Pinitas511347a2017-09-18 18:33:07 +010026
27#include "arm_compute/runtime/ILifetimeManager.h"
28
29#include "arm_compute/runtime/IMemoryPool.h"
30#include "arm_compute/runtime/Types.h"
31
32#include <cstddef>
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010033#include <list>
Georgios Pinitas511347a2017-09-18 18:33:07 +010034#include <map>
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010035#include <set>
Georgios Pinitas511347a2017-09-18 18:33:07 +010036#include <vector>
37
38namespace arm_compute
39{
40class IAllocator;
41class IMemoryGroup;
42
43/** Abstract class of the simple lifetime manager interface */
44class ISimpleLifetimeManager : public ILifetimeManager
45{
46public:
47 /** Constructor */
48 ISimpleLifetimeManager();
49 /** Prevent instances of this class to be copy constructed */
50 ISimpleLifetimeManager(const ISimpleLifetimeManager &) = delete;
51 /** Prevent instances of this class to be copied */
52 ISimpleLifetimeManager &operator=(const ISimpleLifetimeManager &) = delete;
53 /** Allow instances of this class to be move constructed */
54 ISimpleLifetimeManager(ISimpleLifetimeManager &&) = default;
55 /** Allow instances of this class to be moved */
56 ISimpleLifetimeManager &operator=(ISimpleLifetimeManager &&) = default;
57
58 // Inherited methods overridden:
59 void register_group(IMemoryGroup *group) override;
Georgios Pinitas40958ad2019-09-18 12:04:56 +010060 bool release_group(IMemoryGroup *group) override;
Georgios Pinitas511347a2017-09-18 18:33:07 +010061 void start_lifetime(void *obj) override;
Georgios Pinitas555f1c22018-12-14 17:11:20 +000062 void end_lifetime(void *obj, IMemory &obj_memory, size_t size, size_t alignment) override;
Georgios Pinitas511347a2017-09-18 18:33:07 +010063 bool are_all_finalized() const override;
64
65protected:
66 /** Update blobs and mappings */
67 virtual void update_blobs_and_mappings() = 0;
68
69protected:
70 /** Element struct */
71 struct Element
72 {
Georgios Pinitas555f1c22018-12-14 17:11:20 +000073 Element(void *id_ = nullptr, IMemory *handle_ = nullptr, size_t size_ = 0, size_t alignment_ = 0, bool status_ = false)
74 : id(id_), handle(handle_), size(size_), alignment(alignment_), status(status_)
Georgios Pinitas511347a2017-09-18 18:33:07 +010075 {
76 }
Georgios Pinitas555f1c22018-12-14 17:11:20 +000077 void *id; /**< Element id */
78 IMemory *handle; /**< Element's memory handle */
79 size_t size; /**< Element's size */
80 size_t alignment; /**< Alignment requirement */
81 bool status; /**< Lifetime status */
Georgios Pinitas511347a2017-09-18 18:33:07 +010082 };
83
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010084 /** Blob struct */
85 struct Blob
86 {
87 void *id;
88 size_t max_size;
Georgios Pinitas555f1c22018-12-14 17:11:20 +000089 size_t max_alignment;
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010090 std::set<void *> bound_elements;
91 };
92
93 IMemoryGroup *_active_group; /**< Active group */
94 std::map<void *, Element> _active_elements; /**< A map that contains the active elements */
95 std::list<Blob> _free_blobs; /**< Free blobs */
96 std::list<Blob> _occupied_blobs; /**< Occupied blobs */
97 std::map<IMemoryGroup *, std::map<void *, Element>> _finalized_groups; /**< A map that contains the finalized groups */
Georgios Pinitas511347a2017-09-18 18:33:07 +010098};
99} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000100#endif /* ARM_COMPUTE_ISIMPLELIFETIMEMANAGER_H */