blob: 4384283b949cc2be5b06f4aea65d749460be9897 [file] [log] [blame]
Georgios Pinitas511347a2017-09-18 18:33:07 +01001/*
Georgios Pinitas3d1489d2018-05-03 20:47:16 +01002 * Copyright (c) 2017-2018 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#ifndef __ARM_COMPUTE_ISIMPLELIFETIMEMANAGER_H__
25#define __ARM_COMPUTE_ISIMPLELIFETIMEMANAGER_H__
26
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;
60 void start_lifetime(void *obj) override;
Georgios Pinitas555f1c22018-12-14 17:11:20 +000061 void end_lifetime(void *obj, IMemory &obj_memory, size_t size, size_t alignment) override;
Georgios Pinitas511347a2017-09-18 18:33:07 +010062 bool are_all_finalized() const override;
63
64protected:
65 /** Update blobs and mappings */
66 virtual void update_blobs_and_mappings() = 0;
67
68protected:
69 /** Element struct */
70 struct Element
71 {
Georgios Pinitas555f1c22018-12-14 17:11:20 +000072 Element(void *id_ = nullptr, IMemory *handle_ = nullptr, size_t size_ = 0, size_t alignment_ = 0, bool status_ = false)
73 : id(id_), handle(handle_), size(size_), alignment(alignment_), status(status_)
Georgios Pinitas511347a2017-09-18 18:33:07 +010074 {
75 }
Georgios Pinitas555f1c22018-12-14 17:11:20 +000076 void *id; /**< Element id */
77 IMemory *handle; /**< Element's memory handle */
78 size_t size; /**< Element's size */
79 size_t alignment; /**< Alignment requirement */
80 bool status; /**< Lifetime status */
Georgios Pinitas511347a2017-09-18 18:33:07 +010081 };
82
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010083 /** Blob struct */
84 struct Blob
85 {
86 void *id;
87 size_t max_size;
Georgios Pinitas555f1c22018-12-14 17:11:20 +000088 size_t max_alignment;
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010089 std::set<void *> bound_elements;
90 };
91
92 IMemoryGroup *_active_group; /**< Active group */
93 std::map<void *, Element> _active_elements; /**< A map that contains the active elements */
94 std::list<Blob> _free_blobs; /**< Free blobs */
95 std::list<Blob> _occupied_blobs; /**< Occupied blobs */
96 std::map<IMemoryGroup *, std::map<void *, Element>> _finalized_groups; /**< A map that contains the finalized groups */
Georgios Pinitas511347a2017-09-18 18:33:07 +010097};
98} // namespace arm_compute
99#endif /* __ARM_COMPUTE_ISIMPLELIFETIMEMANAGER_H__ */