2 * Copyright 2012-15 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
26 #include "dm_services.h"
27 #include "include/vector.h"
29 bool dal_vector_construct(
30 struct vector *vector,
31 struct dc_context *ctx,
35 vector->container = NULL;
37 if (!struct_size || !capacity) {
38 /* Container must be non-zero size*/
43 vector->container = kcalloc(capacity, struct_size, GFP_KERNEL);
44 if (vector->container == NULL)
46 vector->capacity = capacity;
47 vector->struct_size = struct_size;
53 static bool dal_vector_presized_costruct(struct vector *vector,
54 struct dc_context *ctx,
61 vector->container = NULL;
63 if (!struct_size || !count) {
64 /* Container must be non-zero size*/
69 vector->container = kcalloc(count, struct_size, GFP_KERNEL);
71 if (vector->container == NULL)
74 /* If caller didn't supply initial value then the default
75 * of all zeros is expected, which is exactly what dal_alloc()
76 * initialises the memory to. */
77 if (NULL != initial_value) {
78 for (i = 0; i < count; ++i)
80 vector->container + i * struct_size,
85 vector->capacity = count;
86 vector->struct_size = struct_size;
87 vector->count = count;
91 struct vector *dal_vector_presized_create(
92 struct dc_context *ctx,
97 struct vector *vector = kzalloc(sizeof(struct vector), GFP_KERNEL);
102 if (dal_vector_presized_costruct(
103 vector, ctx, size, initial_value, struct_size))
111 struct vector *dal_vector_create(
112 struct dc_context *ctx,
114 uint32_t struct_size)
116 struct vector *vector = kzalloc(sizeof(struct vector), GFP_KERNEL);
121 if (dal_vector_construct(vector, ctx, capacity, struct_size))
129 void dal_vector_destruct(
130 struct vector *vector)
132 kfree(vector->container);
134 vector->capacity = 0;
137 void dal_vector_destroy(
138 struct vector **vector)
140 if (vector == NULL || *vector == NULL)
142 dal_vector_destruct(*vector);
147 uint32_t dal_vector_get_count(
148 const struct vector *vector)
150 return vector->count;
153 void *dal_vector_at_index(
154 const struct vector *vector,
157 if (vector->container == NULL || index >= vector->count)
159 return vector->container + (index * vector->struct_size);
162 bool dal_vector_remove_at_index(
163 struct vector *vector,
166 if (index >= vector->count)
169 if (index != vector->count - 1)
171 vector->container + (index * vector->struct_size),
172 vector->container + ((index + 1) * vector->struct_size),
173 (vector->count - index - 1) * vector->struct_size);
179 void dal_vector_set_at_index(
180 const struct vector *vector,
184 void *where = dal_vector_at_index(vector, index);
193 vector->struct_size);
196 static inline uint32_t calc_increased_capacity(
197 uint32_t old_capacity)
199 return old_capacity * 2;
202 bool dal_vector_insert_at(
203 struct vector *vector,
207 uint8_t *insert_address;
209 if (vector->count == vector->capacity) {
210 if (!dal_vector_reserve(
212 calc_increased_capacity(vector->capacity)))
216 insert_address = vector->container + (vector->struct_size * position);
218 if (vector->count && position < vector->count)
220 insert_address + vector->struct_size,
222 vector->struct_size * (vector->count - position));
227 vector->struct_size);
234 bool dal_vector_append(
235 struct vector *vector,
238 return dal_vector_insert_at(vector, item, vector->count);
241 struct vector *dal_vector_clone(
242 const struct vector *vector)
244 struct vector *vec_cloned;
247 /* create new vector */
248 count = dal_vector_get_count(vector);
251 /* when count is 0 we still want to create clone of the vector
253 vec_cloned = dal_vector_create(
256 vector->struct_size);
258 /* Call "presized create" version, independently of how the
259 * original vector was created.
260 * The owner of original vector must know how to treat the new
261 * vector - as "presized" or as "regular".
262 * But from vector point of view it doesn't matter. */
263 vec_cloned = dal_vector_presized_create(vector->ctx, count,
264 NULL,/* no initial value */
265 vector->struct_size);
267 if (NULL == vec_cloned) {
272 /* copy vector's data */
273 memmove(vec_cloned->container, vector->container,
274 vec_cloned->struct_size * vec_cloned->capacity);
279 uint32_t dal_vector_capacity(const struct vector *vector)
281 return vector->capacity;
284 bool dal_vector_reserve(struct vector *vector, uint32_t capacity)
288 if (capacity <= vector->capacity)
291 new_container = krealloc(vector->container,
292 capacity * vector->struct_size, GFP_KERNEL);
295 vector->container = new_container;
296 vector->capacity = capacity;
303 void dal_vector_clear(struct vector *vector)