1
10
13
14
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
160
161
162
163
164
165
166
167
168
169
170
171
172
173
175
180
181
182
183
184
185
186
188
189
190
191
192
193
195
196
197
198
201
202
203
204
210
211
212
213
218
219
220
221
222
223
224
225
226
227
228
229
230
231
237
238
239
240
241
242
249
250
251
256
257
258
259
260
261
262
263
264
265
266
267
269
270
271
272
273
274
275
276
277
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
313
314
315
316
317
318
319
320
321
322
323
324
326
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
...
...
...
#define TX_SOURCE_CODE
#include "tx_api.h"
#include "tx_thread.h"
#include "tx_byte_pool.h"
...
...
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;
TX_DISABLE
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)
{
TX_RESTORE
current_ptr = TX_NULL;
}if (memory_size >= total_theoretical_available) { ... }
else
{
TX_THREAD_GET_CURRENT(thread_ptr)
pool_ptr -> tx_byte_pool_owner = thread_ptr;
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
_tx_byte_pool_performance_search_count++;
pool_ptr -> tx_byte_pool_performance_search_count++;/* ... */
#endif
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)
{
if (first_free_block_found == TX_FALSE)
{
pool_ptr->tx_byte_pool_search = current_ptr;
/* ... */
first_free_block_found = TX_TRUE;
}if (first_free_block_found == TX_FALSE) { ... }
this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr);
next_ptr = *this_block_link_ptr;
available_bytes = TX_UCHAR_POINTER_DIF(next_ptr, current_ptr);
available_bytes = available_bytes - ((sizeof(UCHAR *)) + (sizeof(ALIGN_TYPE)));
/* ... */
if (available_bytes >= memory_size)
{
break;
}if (available_bytes >= memory_size) { ... }
else
{
available_bytes = ((ULONG) 0);
/* ... */
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)
{
/* ... */
next_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(next_ptr);
*this_block_link_ptr = *next_block_link_ptr;
/* ... */
pool_ptr -> tx_byte_pool_fragments--;
#ifdef TX_BYTE_POOL_ENABLE_PERFORMANCE_INFO
_tx_byte_pool_performance_merge_count++;
pool_ptr -> tx_byte_pool_performance_merge_count++;/* ... */
#endif
if (pool_ptr -> tx_byte_pool_search == next_ptr)
{
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
{
next_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(next_ptr);
current_ptr = *next_block_link_ptr;
if (examine_blocks != ((UINT) 0))
{
examine_blocks--;
#ifdef TX_BYTE_POOL_ENABLE_PERFORMANCE_INFO
_tx_byte_pool_performance_search_count++;
pool_ptr -> tx_byte_pool_performance_search_count++;/* ... */
#endif
}if (examine_blocks != ((UINT) 0)) { ... }
}else { ... }
}else { ... }
}if ((*free_ptr) == TX_BYTE_BLOCK_FREE) { ... }
else
{
this_block_link_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(current_ptr);
current_ptr = *this_block_link_ptr;
}else { ... }
if (examine_blocks != ((UINT) 0))
{
examine_blocks--;
}if (examine_blocks != ((UINT) 0)) { ... }
TX_RESTORE
TX_DISABLE
if (pool_ptr -> tx_byte_pool_owner != thread_ptr)
{
/* ... */
current_ptr = pool_ptr -> tx_byte_pool_search;
examine_blocks = pool_ptr -> tx_byte_pool_fragments + ((UINT) 1);
pool_ptr -> tx_byte_pool_owner = thread_ptr;
}if (pool_ptr -> tx_byte_pool_owner != thread_ptr) { ... }
...} while(examine_blocks != ((UINT) 0));
/* ... */
if (available_bytes != ((ULONG) 0))
{
if ((available_bytes - memory_size) >= ((ULONG) TX_BYTE_BLOCK_MIN))
{
next_ptr = TX_UCHAR_POINTER_ADD(current_ptr, (memory_size + ((sizeof(UCHAR *)) + (sizeof(ALIGN_TYPE)))));
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;
pool_ptr -> tx_byte_pool_fragments++;
*this_block_link_ptr = next_ptr;
available_bytes = memory_size;
#ifdef TX_BYTE_POOL_ENABLE_PERFORMANCE_INFO
_tx_byte_pool_performance_split_count++;
pool_ptr -> tx_byte_pool_performance_split_count++;/* ... */
#endif
}if ((available_bytes - memory_size) >= ((ULONG) TX_BYTE_BLOCK_MIN)) { ... }
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);
pool_ptr -> tx_byte_pool_available = (pool_ptr -> tx_byte_pool_available - available_bytes) - ((sizeof(UCHAR *)) + (sizeof(ALIGN_TYPE)));
/* ... */
if (current_ptr == pool_ptr -> tx_byte_pool_search)
{
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) { ... }
TX_RESTORE
current_ptr = TX_UCHAR_POINTER_ADD(current_ptr, (((sizeof(UCHAR *)) + (sizeof(ALIGN_TYPE)))));
}if (available_bytes != ((ULONG) 0)) { ... }
else
{
TX_RESTORE
current_ptr = TX_NULL;
}else { ... }
}else { ... }
return(current_ptr);
}{ ... }