123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- uxListRemove (struct ListItem_t * const pxItemToRemove)
- {
- struct List_t * const pxList;
- UBaseType_t D.6028;
- struct xLIST_ITEM * _1;
- struct xLIST_ITEM * _2;
- struct xLIST_ITEM * _3;
- struct xLIST_ITEM * _4;
- struct ListItem_t * _5;
- struct xLIST_ITEM * _6;
- long unsigned int _7;
- long unsigned int _8;
- UBaseType_t _18;
- <bb 2> :
- pxList_12 = pxItemToRemove_11(D)->pvContainer;
- _1 = pxItemToRemove_11(D)->pxNext;
- _2 = pxItemToRemove_11(D)->pxPrevious;
- _1->pxPrevious = _2;
- _3 = pxItemToRemove_11(D)->pxPrevious;
- _4 = pxItemToRemove_11(D)->pxNext;
- _3->pxNext = _4;
- _5 = pxList_12->pxIndex;
- if (pxItemToRemove_11(D) == _5)
- goto <bb 3>; [INV]
- else
- goto <bb 4>; [INV]
- <bb 3> :
- _6 = pxItemToRemove_11(D)->pxPrevious;
- pxList_12->pxIndex = _6;
- <bb 4> :
- pxItemToRemove_11(D)->pvContainer = 0B;
- _7 ={v} pxList_12->uxNumberOfItems;
- _8 = _7 + 4294967295;
- pxList_12->uxNumberOfItems ={v} _8;
- _18 ={v} pxList_12->uxNumberOfItems;
- <bb 5> :
- <L3>:
- return _18;
- }
- vListInsert (struct List_t * const pxList, struct ListItem_t * const pxNewListItem)
- {
- const TickType_t xValueOfInsertion;
- struct ListItem_t * pxIterator;
- struct xLIST_ITEM * _1;
- long unsigned int _2;
- struct xLIST_ITEM * _3;
- struct xLIST_ITEM * _4;
- long unsigned int _5;
- long unsigned int _6;
- <bb 2> :
- xValueOfInsertion_11 = pxNewListItem_10(D)->xItemValue;
- if (xValueOfInsertion_11 == 4294967295)
- goto <bb 3>; [INV]
- else
- goto <bb 4>; [INV]
- <bb 3> :
- pxIterator_15 = pxList_12(D)->xListEnd.pxPrevious;
- goto <bb 7>; [INV]
- <bb 4> :
- pxIterator_13 = &pxList_12(D)->xListEnd;
- goto <bb 6>; [INV]
- <bb 5> :
- pxIterator_14 = pxIterator_7->pxNext;
- <bb 6> :
- # pxIterator_7 = PHI <pxIterator_13(4), pxIterator_14(5)>
- _1 = pxIterator_7->pxNext;
- _2 = _1->xItemValue;
- if (xValueOfInsertion_11 >= _2)
- goto <bb 5>; [INV]
- else
- goto <bb 7>; [INV]
- <bb 7> :
- # pxIterator_8 = PHI <pxIterator_15(3), pxIterator_7(6)>
- _3 = pxIterator_8->pxNext;
- pxNewListItem_10(D)->pxNext = _3;
- _4 = pxNewListItem_10(D)->pxNext;
- _4->pxPrevious = pxNewListItem_10(D);
- pxNewListItem_10(D)->pxPrevious = pxIterator_8;
- pxIterator_8->pxNext = pxNewListItem_10(D);
- pxNewListItem_10(D)->pvContainer = pxList_12(D);
- _5 ={v} pxList_12(D)->uxNumberOfItems;
- _6 = _5 + 1;
- pxList_12(D)->uxNumberOfItems ={v} _6;
- return;
- }
- vListInsertEnd (struct List_t * const pxList, struct ListItem_t * const pxNewListItem)
- {
- struct ListItem_t * const pxIndex;
- struct xLIST_ITEM * _1;
- struct xLIST_ITEM * _2;
- long unsigned int _3;
- long unsigned int _4;
- <bb 2> :
- pxIndex_7 = pxList_6(D)->pxIndex;
- pxNewListItem_8(D)->pxNext = pxIndex_7;
- _1 = pxIndex_7->pxPrevious;
- pxNewListItem_8(D)->pxPrevious = _1;
- _2 = pxIndex_7->pxPrevious;
- _2->pxNext = pxNewListItem_8(D);
- pxIndex_7->pxPrevious = pxNewListItem_8(D);
- pxNewListItem_8(D)->pvContainer = pxList_6(D);
- _3 ={v} pxList_6(D)->uxNumberOfItems;
- _4 = _3 + 1;
- pxList_6(D)->uxNumberOfItems ={v} _4;
- return;
- }
- vListInitialiseItem (struct ListItem_t * const pxItem)
- {
- <bb 2> :
- pxItem_2(D)->pvContainer = 0B;
- return;
- }
- vListInitialise (struct List_t * const pxList)
- {
- struct MiniListItem_t * _1;
- struct MiniListItem_t * _2;
- struct MiniListItem_t * _3;
- <bb 2> :
- _1 = &pxList_4(D)->xListEnd;
- pxList_4(D)->pxIndex = _1;
- pxList_4(D)->xListEnd.xItemValue = 4294967295;
- _2 = &pxList_4(D)->xListEnd;
- pxList_4(D)->xListEnd.pxNext = _2;
- _3 = &pxList_4(D)->xListEnd;
- pxList_4(D)->xListEnd.pxPrevious = _3;
- pxList_4(D)->uxNumberOfItems ={v} 0;
- return;
- }
|