Select one of the symbols to view example projects that use it.
 
Outline
...
...
...
...
#define TX_SOURCE_CODE
#include "tx_api.h"
#include "tx_thread.h"
#include "tx_byte_pool.h"
...
...
_tx_byte_pool_search(TX_BYTE_POOL *, ULONG)
Files
loading...
SourceVuSTM32 Libraries and Samplesthreadxcommon/src/tx_byte_pool_search.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */... /**************************************************************************/ ... /**************************************************************************/ /**************************************************************************/ /** */ /** ThreadX Component */ /** */ /** Byte Pool */ /** */... /**************************************************************************/ /**************************************************************************/ #define TX_SOURCE_CODE /* Include necessary system files. */ #include "tx_api.h" #include "tx_thread.h" #include "tx_byte_pool.h" ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _tx_byte_pool_search PORTABLE C */ /* 6.1.7 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function searches a byte pool for a memory block to satisfy */ /* the requested number of bytes. Merging of adjacent free blocks */ /* takes place during the search and a split of the block that */ /* satisfies the request may occur before this function returns. */ /* */ /* It is assumed that this function is called with interrupts enabled */ /* and with the tx_pool_owner field set to the thread performing the */ /* search. Also note that the search can occur during allocation and */ /* release of a memory block. */ /* */ /* INPUT */ /* */ /* pool_ptr Pointer to pool control block */ /* memory_size Number of bytes required */ /* */ /* OUTPUT */ /* */ /* UCHAR * Pointer to the allocated memory, */ /* if successful. Otherwise, a */ /* NULL is returned */ /* */ /* CALLS */ /* */ /* None */ /* */ /* CALLED BY */ /* */ /* _tx_byte_allocate Allocate bytes of memory */ /* _tx_byte_release Release bytes of memory */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 William E. Lamie Initial Version 6.0 */ /* 09-30-2020 Yuxin Zhou Modified comment(s), */ /* resulting in version 6.1 */ /* 06-02-2021 Scott Larson Improve possible free bytes */ /* calculation, */ /* resulting in version 6.1.7 */ /* */... /**************************************************************************/ UCHAR *_tx_byte_pool_search(TX_BYTE_POOL *pool_ptr, ULONG memory_size) { TX_INTERRUPT_SAVE_AREA UCHAR *current_ptr; UCHAR *next_ptr; UCHAR **this_block_link_ptr; UCHAR **next_block_link_ptr; ULONG available_bytes; UINT examine_blocks; UINT first_free_block_found = TX_FALSE; TX_THREAD *thread_ptr; ALIGN_TYPE *free_ptr; UCHAR *work_ptr; ULONG total_theoretical_available; /* Disable interrupts. */ TX_DISABLE /* First, determine if there are enough bytes in the pool. */ /* Theoretical bytes available = free bytes + ((fragments-2) * overhead of each block) */ total_theoretical_available = pool_ptr -> tx_byte_pool_available + ((pool_ptr -> tx_byte_pool_fragments - 2) * ((sizeof(UCHAR *)) + (sizeof(ALIGN_TYPE)))); if (memory_size >= total_theoretical_available) { /* Restore interrupts. */ TX_RESTORE /* Not enough memory, return a NULL pointer. */ current_ptr = TX_NULL; }if (memory_size >= total_theoretical_available) { ... } else { /* Pickup thread pointer. */ TX_THREAD_GET_CURRENT(thread_ptr) /* Setup ownership of the byte pool. */ pool_ptr -> tx_byte_pool_owner = thread_ptr; /* Walk through the memory pool in search for a large enough block. */ current_ptr = pool_ptr -> tx_byte_pool_search; examine_blocks = pool_ptr -> tx_byte_pool_fragments + ((UINT) 1); available_bytes = ((ULONG) 0); do { #ifdef TX_BYTE_POOL_ENABLE_PERFORMANCE_INFO /* Increment the total fragment search counter. */ _tx_byte_pool_performance_search_count++; /* Increment the number of fragments searched on this pool. */ pool_ptr -> tx_byte_pool_performance_search_count++;/* ... */ #endif /* Check to see if this block is free. */ work_ptr = TX_UCHAR_POINTER_ADD(current_ptr, (sizeof(UCHAR *))); free_ptr = TX_UCHAR_TO_ALIGN_TYPE_POINTER_CONVERT(work_ptr); if ((*free_ptr) == TX_BYTE_BLOCK_FREE) { /* Determine if this is the first free block. */ if (first_free_block_found == TX_FALSE) { /* This is the first free block. */ pool_ptr->tx_byte_pool_search = current_ptr; /* Set the flag to indicate we have found the first free block. *//* ... */ first_free_block_found = TX_TRUE; }if (first_free_block_found == TX_FALSE) { ... } /* Block is free, see if it is large enough. */ /* Pickup the next block's pointer. */ this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr); next_ptr = *this_block_link_ptr; /* Calculate the number of bytes available in this block. */ available_bytes = TX_UCHAR_POINTER_DIF(next_ptr, current_ptr); available_bytes = available_bytes - ((sizeof(UCHAR *)) + (sizeof(ALIGN_TYPE))); /* If this is large enough, we are done because our first-fit algorithm has been satisfied! *//* ... */ if (available_bytes >= memory_size) { /* Get out of the search loop! */ break; }if (available_bytes >= memory_size) { ... } else { /* Clear the available bytes variable. */ available_bytes = ((ULONG) 0); /* Not enough memory, check to see if the neighbor is free and can be merged. *//* ... */ work_ptr = TX_UCHAR_POINTER_ADD(next_ptr, (sizeof(UCHAR *))); free_ptr = TX_UCHAR_TO_ALIGN_TYPE_POINTER_CONVERT(work_ptr); if ((*free_ptr) == TX_BYTE_BLOCK_FREE) { /* Yes, neighbor block can be merged! This is quickly accomplished by updating the current block with the next blocks pointer. *//* ... */ next_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(next_ptr); *this_block_link_ptr = *next_block_link_ptr; /* Reduce the fragment total. We don't need to increase the bytes available because all free headers are also included in the available count. *//* ... */ pool_ptr -> tx_byte_pool_fragments--; #ifdef TX_BYTE_POOL_ENABLE_PERFORMANCE_INFO /* Increment the total merge counter. */ _tx_byte_pool_performance_merge_count++; /* Increment the number of blocks merged on this pool. */ pool_ptr -> tx_byte_pool_performance_merge_count++;/* ... */ #endif /* See if the search pointer is affected. */ if (pool_ptr -> tx_byte_pool_search == next_ptr) { /* Yes, update the search pointer. */ pool_ptr -> tx_byte_pool_search = current_ptr; }if (pool_ptr -> tx_byte_pool_search == next_ptr) { ... } }if ((*free_ptr) == TX_BYTE_BLOCK_FREE) { ... } else { /* Neighbor is not free so we can skip over it! */ next_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(next_ptr); current_ptr = *next_block_link_ptr; /* Decrement the examined block count to account for this one. */ if (examine_blocks != ((UINT) 0)) { examine_blocks--; #ifdef TX_BYTE_POOL_ENABLE_PERFORMANCE_INFO /* Increment the total fragment search counter. */ _tx_byte_pool_performance_search_count++; /* Increment the number of fragments searched on this pool. */ pool_ptr -> tx_byte_pool_performance_search_count++;/* ... */ #endif }if (examine_blocks != ((UINT) 0)) { ... } }else { ... } }else { ... } }if ((*free_ptr) == TX_BYTE_BLOCK_FREE) { ... } else { /* Block is not free, move to next block. */ this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr); current_ptr = *this_block_link_ptr; }else { ... } /* Another block has been searched... decrement counter. */ if (examine_blocks != ((UINT) 0)) { examine_blocks--; }if (examine_blocks != ((UINT) 0)) { ... } /* Restore interrupts temporarily. */ TX_RESTORE /* Disable interrupts. */ TX_DISABLE /* Determine if anything has changed in terms of pool ownership. */ if (pool_ptr -> tx_byte_pool_owner != thread_ptr) { /* Pool changed ownership in the brief period interrupts were enabled. Reset the search. *//* ... */ current_ptr = pool_ptr -> tx_byte_pool_search; examine_blocks = pool_ptr -> tx_byte_pool_fragments + ((UINT) 1); /* Setup our ownership again. */ pool_ptr -> tx_byte_pool_owner = thread_ptr; }if (pool_ptr -> tx_byte_pool_owner != thread_ptr) { ... } ...} while(examine_blocks != ((UINT) 0)); /* Determine if a block was found. If so, determine if it needs to be split. *//* ... */ if (available_bytes != ((ULONG) 0)) { /* Determine if we need to split this block. */ if ((available_bytes - memory_size) >= ((ULONG) TX_BYTE_BLOCK_MIN)) { /* Split the block. */ next_ptr = TX_UCHAR_POINTER_ADD(current_ptr, (memory_size + ((sizeof(UCHAR *)) + (sizeof(ALIGN_TYPE))))); /* Setup the new free block. */ next_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(next_ptr); this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr); *next_block_link_ptr = *this_block_link_ptr; work_ptr = TX_UCHAR_POINTER_ADD(next_ptr, (sizeof(UCHAR *))); free_ptr = TX_UCHAR_TO_ALIGN_TYPE_POINTER_CONVERT(work_ptr); *free_ptr = TX_BYTE_BLOCK_FREE; /* Increase the total fragment counter. */ pool_ptr -> tx_byte_pool_fragments++; /* Update the current pointer to point at the newly created block. */ *this_block_link_ptr = next_ptr; /* Set available equal to memory size for subsequent calculation. */ available_bytes = memory_size; #ifdef TX_BYTE_POOL_ENABLE_PERFORMANCE_INFO /* Increment the total split counter. */ _tx_byte_pool_performance_split_count++; /* Increment the number of blocks split on this pool. */ pool_ptr -> tx_byte_pool_performance_split_count++;/* ... */ #endif }if ((available_bytes - memory_size) >= ((ULONG) TX_BYTE_BLOCK_MIN)) { ... } /* In any case, mark the current block as allocated. */ work_ptr = TX_UCHAR_POINTER_ADD(current_ptr, (sizeof(UCHAR *))); this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(work_ptr); *this_block_link_ptr = TX_BYTE_POOL_TO_UCHAR_POINTER_CONVERT(pool_ptr); /* Reduce the number of available bytes in the pool. */ pool_ptr -> tx_byte_pool_available = (pool_ptr -> tx_byte_pool_available - available_bytes) - ((sizeof(UCHAR *)) + (sizeof(ALIGN_TYPE))); /* Determine if the search pointer needs to be updated. This is only done if the search pointer matches the block to be returned. *//* ... */ if (current_ptr == pool_ptr -> tx_byte_pool_search) { /* Yes, update the search pointer to the next block. */ this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr); pool_ptr -> tx_byte_pool_search = *this_block_link_ptr; }if (current_ptr == pool_ptr -> tx_byte_pool_search) { ... } /* Restore interrupts. */ TX_RESTORE /* Adjust the pointer for the application. */ current_ptr = TX_UCHAR_POINTER_ADD(current_ptr, (((sizeof(UCHAR *)) + (sizeof(ALIGN_TYPE))))); }if (available_bytes != ((ULONG) 0)) { ... } else { /* Restore interrupts. */ TX_RESTORE /* Set current pointer to NULL to indicate nothing was found. */ current_ptr = TX_NULL; }else { ... } }else { ... } /* Return the search pointer. */ return(current_ptr); }{ ... }
Details