123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- Marking local functions:
- Marking externally visible functions: uxListRemove vListInsert vListInsertEnd vListInitialiseItem vListInitialise
- Marking externally visible variables:
- Reclaiming functions:
- Reclaiming variables:
- Clearing address taken flags:
- Symbol table:
- uxListRemove/8 (uxListRemove) @06b86380
- Type: function definition analyzed
- Visibility: force_output externally_visible no_reorder public
- References:
- Referring:
- Availability: available
- Function flags: body
- Called by:
- Calls:
- vListInsert/7 (vListInsert) @06b86d20
- Type: function definition analyzed
- Visibility: force_output externally_visible no_reorder public
- References:
- Referring:
- Availability: available
- Function flags: body
- Called by:
- Calls:
- vListInsertEnd/6 (vListInsertEnd) @06b86a80
- Type: function definition analyzed
- Visibility: force_output externally_visible no_reorder public
- References:
- Referring:
- Availability: available
- Function flags: body
- Called by:
- Calls:
- vListInitialiseItem/5 (vListInitialiseItem) @06b867e0
- Type: function definition analyzed
- Visibility: force_output externally_visible no_reorder public
- References:
- Referring:
- Availability: available
- Function flags: body
- Called by:
- Calls:
- vListInitialise/4 (vListInitialise) @06b86540
- Type: function definition analyzed
- Visibility: force_output externally_visible no_reorder public
- References:
- Referring:
- Availability: available
- Function flags: body
- Called by:
- Calls:
- uxListRemove (struct ListItem_t * const pxItemToRemove)
- {
- struct List_t * const pxList;
- UBaseType_t D.6028;
- <bb 2> :
- pxList = pxItemToRemove->pvContainer;
- _1 = pxItemToRemove->pxNext;
- _2 = pxItemToRemove->pxPrevious;
- _1->pxPrevious = _2;
- _3 = pxItemToRemove->pxPrevious;
- _4 = pxItemToRemove->pxNext;
- _3->pxNext = _4;
- _5 = pxList->pxIndex;
- if (pxItemToRemove == _5)
- goto <bb 3>; [INV]
- else
- goto <bb 4>; [INV]
- <bb 3> :
- _6 = pxItemToRemove->pxPrevious;
- pxList->pxIndex = _6;
- <bb 4> :
- pxItemToRemove->pvContainer = 0B;
- _7 = pxList->uxNumberOfItems;
- _8 = _7 + 4294967295;
- pxList->uxNumberOfItems = _8;
- D.6028 = pxList->uxNumberOfItems;
- <bb 5> :
- <L3>:
- return D.6028;
- }
- vListInsert (struct List_t * const pxList, struct ListItem_t * const pxNewListItem)
- {
- const TickType_t xValueOfInsertion;
- struct ListItem_t * pxIterator;
- <bb 2> :
- xValueOfInsertion = pxNewListItem->xItemValue;
- if (xValueOfInsertion == 4294967295)
- goto <bb 3>; [INV]
- else
- goto <bb 4>; [INV]
- <bb 3> :
- pxIterator = pxList->xListEnd.pxPrevious;
- goto <bb 7>; [INV]
- <bb 4> :
- pxIterator = &pxList->xListEnd;
- goto <bb 6>; [INV]
- <bb 5> :
- pxIterator = pxIterator->pxNext;
- <bb 6> :
- _1 = pxIterator->pxNext;
- _2 = _1->xItemValue;
- if (xValueOfInsertion >= _2)
- goto <bb 5>; [INV]
- else
- goto <bb 7>; [INV]
- <bb 7> :
- _3 = pxIterator->pxNext;
- pxNewListItem->pxNext = _3;
- _4 = pxNewListItem->pxNext;
- _4->pxPrevious = pxNewListItem;
- pxNewListItem->pxPrevious = pxIterator;
- pxIterator->pxNext = pxNewListItem;
- pxNewListItem->pvContainer = pxList;
- _5 = pxList->uxNumberOfItems;
- _6 = _5 + 1;
- pxList->uxNumberOfItems = _6;
- return;
- }
- vListInsertEnd (struct List_t * const pxList, struct ListItem_t * const pxNewListItem)
- {
- struct ListItem_t * const pxIndex;
- <bb 2> :
- pxIndex = pxList->pxIndex;
- pxNewListItem->pxNext = pxIndex;
- _1 = pxIndex->pxPrevious;
- pxNewListItem->pxPrevious = _1;
- _2 = pxIndex->pxPrevious;
- _2->pxNext = pxNewListItem;
- pxIndex->pxPrevious = pxNewListItem;
- pxNewListItem->pvContainer = pxList;
- _3 = pxList->uxNumberOfItems;
- _4 = _3 + 1;
- pxList->uxNumberOfItems = _4;
- return;
- }
- vListInitialiseItem (struct ListItem_t * const pxItem)
- {
- <bb 2> :
- pxItem->pvContainer = 0B;
- return;
- }
- vListInitialise (struct List_t * const pxList)
- {
- <bb 2> :
- _1 = &pxList->xListEnd;
- pxList->pxIndex = _1;
- pxList->xListEnd.xItemValue = 4294967295;
- _2 = &pxList->xListEnd;
- pxList->xListEnd.pxNext = _2;
- _3 = &pxList->xListEnd;
- pxList->xListEnd.pxPrevious = _3;
- pxList->uxNumberOfItems = 0;
- return;
- }
|