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 <linux/slab.h>
28 #include "dm_services.h"
29 #include "include/vector.h"
31 bool dal_vector_construct(
32 struct vector
*vector
,
33 struct dc_context
*ctx
,
37 vector
->container
= NULL
;
39 if (!struct_size
|| !capacity
) {
40 /* Container must be non-zero size*/
45 vector
->container
= kcalloc(capacity
, struct_size
, GFP_KERNEL
);
46 if (vector
->container
== NULL
)
48 vector
->capacity
= capacity
;
49 vector
->struct_size
= struct_size
;
55 static bool dal_vector_presized_costruct(
56 struct vector
*vector
,
57 struct dc_context
*ctx
,
64 vector
->container
= NULL
;
66 if (!struct_size
|| !count
) {
67 /* Container must be non-zero size*/
72 vector
->container
= kcalloc(count
, struct_size
, GFP_KERNEL
);
74 if (vector
->container
== NULL
)
77 /* If caller didn't supply initial value then the default
78 * of all zeros is expected, which is exactly what dal_alloc()
79 * initialises the memory to. */
80 if (NULL
!= initial_value
) {
81 for (i
= 0; i
< count
; ++i
)
83 vector
->container
+ i
* struct_size
,
88 vector
->capacity
= count
;
89 vector
->struct_size
= struct_size
;
90 vector
->count
= count
;
94 struct vector
*dal_vector_presized_create(
95 struct dc_context
*ctx
,
100 struct vector
*vector
= kzalloc(sizeof(struct vector
), GFP_KERNEL
);
105 if (dal_vector_presized_costruct(
106 vector
, ctx
, size
, initial_value
, struct_size
))
114 struct vector
*dal_vector_create(
115 struct dc_context
*ctx
,
117 uint32_t struct_size
)
119 struct vector
*vector
= kzalloc(sizeof(struct vector
), GFP_KERNEL
);
124 if (dal_vector_construct(vector
, ctx
, capacity
, struct_size
))
132 void dal_vector_destruct(
133 struct vector
*vector
)
135 kfree(vector
->container
);
137 vector
->capacity
= 0;
140 void dal_vector_destroy(
141 struct vector
**vector
)
143 if (vector
== NULL
|| *vector
== NULL
)
145 dal_vector_destruct(*vector
);
150 uint32_t dal_vector_get_count(
151 const struct vector
*vector
)
153 return vector
->count
;
156 void *dal_vector_at_index(
157 const struct vector
*vector
,
160 if (vector
->container
== NULL
|| index
>= vector
->count
)
162 return vector
->container
+ (index
* vector
->struct_size
);
165 bool dal_vector_remove_at_index(
166 struct vector
*vector
,
169 if (index
>= vector
->count
)
172 if (index
!= vector
->count
- 1)
174 vector
->container
+ (index
* vector
->struct_size
),
175 vector
->container
+ ((index
+ 1) * vector
->struct_size
),
176 (vector
->count
- index
- 1) * vector
->struct_size
);
182 void dal_vector_set_at_index(
183 const struct vector
*vector
,
187 void *where
= dal_vector_at_index(vector
, index
);
196 vector
->struct_size
);
199 static inline uint32_t calc_increased_capacity(
200 uint32_t old_capacity
)
202 return old_capacity
* 2;
205 bool dal_vector_insert_at(
206 struct vector
*vector
,
210 uint8_t *insert_address
;
212 if (vector
->count
== vector
->capacity
) {
213 if (!dal_vector_reserve(
215 calc_increased_capacity(vector
->capacity
)))
219 insert_address
= vector
->container
+ (vector
->struct_size
* position
);
221 if (vector
->count
&& position
< vector
->count
)
223 insert_address
+ vector
->struct_size
,
225 vector
->struct_size
* (vector
->count
- position
));
230 vector
->struct_size
);
237 bool dal_vector_append(
238 struct vector
*vector
,
241 return dal_vector_insert_at(vector
, item
, vector
->count
);
244 struct vector
*dal_vector_clone(
245 const struct vector
*vector
)
247 struct vector
*vec_cloned
;
250 /* create new vector */
251 count
= dal_vector_get_count(vector
);
254 /* when count is 0 we still want to create clone of the vector
256 vec_cloned
= dal_vector_create(
259 vector
->struct_size
);
261 /* Call "presized create" version, independently of how the
262 * original vector was created.
263 * The owner of original vector must know how to treat the new
264 * vector - as "presized" or as "regular".
265 * But from vector point of view it doesn't matter. */
266 vec_cloned
= dal_vector_presized_create(vector
->ctx
, count
,
267 NULL
,/* no initial value */
268 vector
->struct_size
);
270 if (NULL
== vec_cloned
) {
275 /* copy vector's data */
276 memmove(vec_cloned
->container
, vector
->container
,
277 vec_cloned
->struct_size
* vec_cloned
->capacity
);
282 uint32_t dal_vector_capacity(const struct vector
*vector
)
284 return vector
->capacity
;
287 bool dal_vector_reserve(struct vector
*vector
, uint32_t capacity
)
291 if (capacity
<= vector
->capacity
)
294 new_container
= krealloc(vector
->container
,
295 capacity
* vector
->struct_size
, GFP_KERNEL
);
298 vector
->container
= new_container
;
299 vector
->capacity
= capacity
;
306 void dal_vector_clear(struct vector
*vector
)