blob: 792ab0b55893682c38521ca11d17d14fb93f9497 [file] [log] [blame]
Georgios Pinitas511347a2017-09-18 18:33:07 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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>
33#include <map>
34#include <vector>
35
36namespace arm_compute
37{
38class IAllocator;
39class IMemoryGroup;
40
41/** Abstract class of the simple lifetime manager interface */
42class ISimpleLifetimeManager : public ILifetimeManager
43{
44public:
45 /** Constructor */
46 ISimpleLifetimeManager();
47 /** Prevent instances of this class to be copy constructed */
48 ISimpleLifetimeManager(const ISimpleLifetimeManager &) = delete;
49 /** Prevent instances of this class to be copied */
50 ISimpleLifetimeManager &operator=(const ISimpleLifetimeManager &) = delete;
51 /** Allow instances of this class to be move constructed */
52 ISimpleLifetimeManager(ISimpleLifetimeManager &&) = default;
53 /** Allow instances of this class to be moved */
54 ISimpleLifetimeManager &operator=(ISimpleLifetimeManager &&) = default;
55
56 // Inherited methods overridden:
57 void register_group(IMemoryGroup *group) override;
58 void start_lifetime(void *obj) override;
59 void end_lifetime(void *obj, void **handle, size_t size) override;
60 bool are_all_finalized() const override;
61
62protected:
63 /** Update blobs and mappings */
64 virtual void update_blobs_and_mappings() = 0;
65
66protected:
67 /** Element struct */
68 struct Element
69 {
70 Element(void *id_ = nullptr, void **handle_ = nullptr, size_t size_ = 0, bool status_ = false)
71 : id(id_), handle(handle_), size(size_), status(status_)
72 {
73 }
74 void *id; /**< Element id */
75 void **handle; /**< Element's memory handle */
76 size_t size; /**< Element's size */
77 bool status; /**< Lifetime status */
78 };
79
80 IMemoryGroup *_active_group; /**< Active group */
81 std::vector<Element> _active_elements; /**< A map that contains the active elements */
82 std::map<IMemoryGroup *, std::vector<Element>> _finalized_groups; /**< A map that contains the finalized groups */
83};
84} // namespace arm_compute
85#endif /* __ARM_COMPUTE_ISIMPLELIFETIMEMANAGER_H__ */