blob: fde65e79c3b1ebd4e3be6519c43ae1814f58ac73 [file] [log] [blame]
buzbee862a7602013-04-05 10:58:54 -07001/*
2 * Copyright (C) 2013 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
Nicolas Geoffray818f2102014-02-18 16:43:35 +000017#ifndef ART_COMPILER_UTILS_GROWABLE_ARRAY_H_
18#define ART_COMPILER_UTILS_GROWABLE_ARRAY_H_
buzbee862a7602013-04-05 10:58:54 -070019
20#include <stdint.h>
21#include <stddef.h>
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070022
23#include "arena_object.h"
buzbee862a7602013-04-05 10:58:54 -070024
25namespace art {
26
Vladimir Markoe39c54e2014-09-22 14:50:02 +010027// Deprecated
28// TODO: Replace all uses with ArenaVector<T>.
buzbee862a7602013-04-05 10:58:54 -070029template<typename T>
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070030class GrowableArray : public ArenaObject<kArenaAllocGrowableArray> {
buzbee862a7602013-04-05 10:58:54 -070031 public:
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070032 GrowableArray(ArenaAllocator* arena, size_t init_length)
buzbee862a7602013-04-05 10:58:54 -070033 : arena_(arena),
buzbeea5abf702013-04-12 14:39:29 -070034 num_allocated_(init_length),
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070035 num_used_(0) {
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -070036 elem_list_ = static_cast<T*>(arena_->Alloc(sizeof(T) * init_length,
Vladimir Marko83cc7ae2014-02-12 18:02:05 +000037 kArenaAllocGrowableArray));
Andreas Gampec8ccf682014-09-29 20:07:43 -070038 }
buzbee862a7602013-04-05 10:58:54 -070039
40
41 // Expand the list size to at least new length.
42 void Resize(size_t new_length) {
43 if (new_length <= num_allocated_) return;
buzbeea5abf702013-04-12 14:39:29 -070044 // If it's a small list double the size, else grow 1.5x.
45 size_t target_length =
46 (num_allocated_ < 128) ? num_allocated_ << 1 : num_allocated_ + (num_allocated_ >> 1);
buzbee862a7602013-04-05 10:58:54 -070047 if (new_length > target_length) {
48 target_length = new_length;
49 }
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -070050 T* new_array = static_cast<T*>(arena_->Alloc(sizeof(T) * target_length,
Vladimir Marko83cc7ae2014-02-12 18:02:05 +000051 kArenaAllocGrowableArray));
buzbee862a7602013-04-05 10:58:54 -070052 memcpy(new_array, elem_list_, sizeof(T) * num_allocated_);
buzbee862a7602013-04-05 10:58:54 -070053 num_allocated_ = target_length;
54 elem_list_ = new_array;
Andreas Gampec8ccf682014-09-29 20:07:43 -070055 }
buzbee862a7602013-04-05 10:58:54 -070056
57 // NOTE: does not return storage, just resets use count.
58 void Reset() {
59 num_used_ = 0;
60 }
61
62 // Insert an element to the end of a list, resizing if necessary.
63 void Insert(T elem) {
64 if (num_used_ == num_allocated_) {
65 Resize(num_used_ + 1);
66 }
67 elem_list_[num_used_++] = elem;
Nicolas Geoffray818f2102014-02-18 16:43:35 +000068 }
69
70 void InsertAt(size_t index, T elem) {
71 DCHECK(index <= Size());
72 Insert(elem);
73 for (size_t i = Size() - 1; i > index; --i) {
74 elem_list_[i] = elem_list_[i - 1];
75 }
76 elem_list_[index] = elem;
77 }
78
79 void Add(T elem) {
80 Insert(elem);
81 }
buzbee862a7602013-04-05 10:58:54 -070082
83 T Get(size_t index) const {
84 DCHECK_LT(index, num_used_);
85 return elem_list_[index];
Andreas Gampec8ccf682014-09-29 20:07:43 -070086 }
buzbee862a7602013-04-05 10:58:54 -070087
88 // Overwrite existing element at position index. List must be large enough.
89 void Put(size_t index, T elem) {
90 DCHECK_LT(index, num_used_);
91 elem_list_[index] = elem;
92 }
93
94 void Increment(size_t index) {
95 DCHECK_LT(index, num_used_);
96 elem_list_[index]++;
97 }
98
buzbeebd663de2013-09-10 15:41:31 -070099 /*
100 * Remove an existing element from list. If there are more than one copy
101 * of the element, only the first one encountered will be deleted.
102 */
103 // TODO: consider renaming this.
buzbee862a7602013-04-05 10:58:54 -0700104 void Delete(T element) {
105 bool found = false;
106 for (size_t i = 0; i < num_used_ - 1; i++) {
107 if (!found && elem_list_[i] == element) {
108 found = true;
109 }
110 if (found) {
111 elem_list_[i] = elem_list_[i+1];
112 }
113 }
114 // We should either have found the element, or it was the last (unscanned) element.
115 DCHECK(found || (element == elem_list_[num_used_ - 1]));
116 num_used_--;
Andreas Gampec8ccf682014-09-29 20:07:43 -0700117 }
buzbee862a7602013-04-05 10:58:54 -0700118
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100119 void DeleteAt(size_t index) {
120 for (size_t i = index; i < num_used_ - 1; i++) {
121 elem_list_[i] = elem_list_[i + 1];
122 }
123 num_used_--;
Andreas Gampec8ccf682014-09-29 20:07:43 -0700124 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100125
buzbee862a7602013-04-05 10:58:54 -0700126 size_t GetNumAllocated() const { return num_allocated_; }
127
128 size_t Size() const { return num_used_; }
129
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000130 bool IsEmpty() const { return num_used_ == 0; }
131
132 T Pop() {
133 DCHECK_GE(num_used_, (size_t)0);
134 return elem_list_[--num_used_];
135 }
136
137 T Peek() const {
138 DCHECK_GE(num_used_, (size_t)0);
139 return elem_list_[num_used_ - 1];
140 }
141
buzbeebd663de2013-09-10 15:41:31 -0700142 void SetSize(size_t new_size) {
143 Resize(new_size);
144 num_used_ = new_size;
145 }
146
buzbee862a7602013-04-05 10:58:54 -0700147 T* GetRawStorage() const { return elem_list_; }
148
buzbee862a7602013-04-05 10:58:54 -0700149 private:
150 ArenaAllocator* const arena_;
151 size_t num_allocated_;
152 size_t num_used_;
buzbee862a7602013-04-05 10:58:54 -0700153 T* elem_list_;
154};
155
156} // namespace art
157
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000158#endif // ART_COMPILER_UTILS_GROWABLE_ARRAY_H_