blob: c6fefde7c7dd680f712bd6e3a92b8d64c371050b [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
20#include <vector>
21#include <set>
22
23#include "utils/scoped_arena_allocator.h"
24#include "safe_map.h"
25
26namespace art {
27
28template <typename T>
29using ScopedArenaVector = std::vector<T, ScopedArenaAllocatorAdapter<T> >;
30
31template <typename T, typename Comparator = std::less<T> >
32using ScopedArenaSet = std::set<T, Comparator, ScopedArenaAllocatorAdapter<T> >;
33
34template <typename K, typename V, typename Comparator = std::less<K> >
35using ScopedArenaSafeMap =
36 SafeMap<K, V, Comparator, ScopedArenaAllocatorAdapter<std::pair<const K, V> > >;
37
38} // namespace art
39
40#endif // ART_COMPILER_UTILS_SCOPED_ARENA_CONTAINERS_H_