blob: 67285658e29b6c36ac5664e4bb8fd872ad2cdc66 [file] [log] [blame]
Vladimir Marko69f08ba2014-04-11 12:28:11 +01001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ART_COMPILER_UTILS_SCOPED_ARENA_CONTAINERS_H_
18#define ART_COMPILER_UTILS_SCOPED_ARENA_CONTAINERS_H_
19
Vladimir Marko622bdbe2014-06-19 14:59:05 +010020#include <deque>
21#include <queue>
Vladimir Marko69f08ba2014-04-11 12:28:11 +010022#include <set>
Vladimir Marko622bdbe2014-06-19 14:59:05 +010023#include <vector>
Vladimir Marko69f08ba2014-04-11 12:28:11 +010024
25#include "utils/scoped_arena_allocator.h"
26#include "safe_map.h"
27
28namespace art {
29
30template <typename T>
Vladimir Marko622bdbe2014-06-19 14:59:05 +010031using ScopedArenaDeque = std::deque<T, ScopedArenaAllocatorAdapter<T>>;
32
33template <typename T>
34using ScopedArenaQueue = std::queue<T, ScopedArenaDeque<T>>;
35
36template <typename T>
Ian Rogers700a4022014-05-19 16:49:03 -070037using ScopedArenaVector = std::vector<T, ScopedArenaAllocatorAdapter<T>>;
Vladimir Marko69f08ba2014-04-11 12:28:11 +010038
Ian Rogers700a4022014-05-19 16:49:03 -070039template <typename T, typename Comparator = std::less<T>>
40using ScopedArenaSet = std::set<T, Comparator, ScopedArenaAllocatorAdapter<T>>;
Vladimir Marko69f08ba2014-04-11 12:28:11 +010041
Ian Rogers700a4022014-05-19 16:49:03 -070042template <typename K, typename V, typename Comparator = std::less<K>>
Vladimir Marko69f08ba2014-04-11 12:28:11 +010043using ScopedArenaSafeMap =
Ian Rogers700a4022014-05-19 16:49:03 -070044 SafeMap<K, V, Comparator, ScopedArenaAllocatorAdapter<std::pair<const K, V>>>;
Vladimir Marko69f08ba2014-04-11 12:28:11 +010045
46} // namespace art
47
48#endif // ART_COMPILER_UTILS_SCOPED_ARENA_CONTAINERS_H_