FreeRTOS-Kernel/FreeRTOS/Test/VeriFast/queue
swaldhoer 2b956b97c7
Update uncrustify configuration and improve CI setup (see FreeRTOS/FreeRTOS-Kernel/pull/445) (#782)
* pin uncrustify version and update configuration file

* Update AbortDelay.c

* Update BlockQ.c

* Update MessageBufferDemo.c

* Update QPeek.c

* Update StaticAllocation.c

* Update integer.c

* Update recmutex.c

* Update create.c

* Update prvCopyDataToQueue.c

* Update prvUnlockQueue.c

* Update vQueueDelete.c

* Update xQueueGenericSend.c

* Update xQueueGenericSendFromISR.c

* Update xQueuePeek.c

* Update xQueueReceive.c

* Update IntSemTest.c

* Update dynamic.c

* Update lexicon.txt

Co-authored-by: alfred gedeon <28123637+alfred2g@users.noreply.github.com>
2022-02-04 13:37:42 -08:00
..
create.c Update uncrustify configuration and improve CI setup (see FreeRTOS/FreeRTOS-Kernel/pull/445) (#782) 2022-02-04 13:37:42 -08:00
prvCopyDataFromQueue.c Apply release changes to main branch (#759) 2021-12-23 10:16:27 -08:00
prvCopyDataToQueue.c Update uncrustify configuration and improve CI setup (see FreeRTOS/FreeRTOS-Kernel/pull/445) (#782) 2022-02-04 13:37:42 -08:00
prvIsQueueEmpty.c Apply release changes to main branch (#759) 2021-12-23 10:16:27 -08:00
prvIsQueueFull.c Apply release changes to main branch (#759) 2021-12-23 10:16:27 -08:00
prvLockQueue.c Apply release changes to main branch (#759) 2021-12-23 10:16:27 -08:00
prvUnlockQueue.c Update uncrustify configuration and improve CI setup (see FreeRTOS/FreeRTOS-Kernel/pull/445) (#782) 2022-02-04 13:37:42 -08:00
README.md Prove buffer lemmas (#124) 2020-07-21 09:51:20 -07:00
uxQueueMessagesWaiting.c Apply release changes to main branch (#759) 2021-12-23 10:16:27 -08:00
uxQueueSpacesAvailable.c Apply release changes to main branch (#759) 2021-12-23 10:16:27 -08:00
vQueueDelete.c Update uncrustify configuration and improve CI setup (see FreeRTOS/FreeRTOS-Kernel/pull/445) (#782) 2022-02-04 13:37:42 -08:00
xQueueGenericSend.c Update uncrustify configuration and improve CI setup (see FreeRTOS/FreeRTOS-Kernel/pull/445) (#782) 2022-02-04 13:37:42 -08:00
xQueueGenericSendFromISR.c Update uncrustify configuration and improve CI setup (see FreeRTOS/FreeRTOS-Kernel/pull/445) (#782) 2022-02-04 13:37:42 -08:00
xQueueIsQueueEmptyFromISR.c Apply release changes to main branch (#759) 2021-12-23 10:16:27 -08:00
xQueueIsQueueFullFromISR.c Apply release changes to main branch (#759) 2021-12-23 10:16:27 -08:00
xQueuePeek.c Update uncrustify configuration and improve CI setup (see FreeRTOS/FreeRTOS-Kernel/pull/445) (#782) 2022-02-04 13:37:42 -08:00
xQueuePeekFromISR.c Apply release changes to main branch (#759) 2021-12-23 10:16:27 -08:00
xQueueReceive.c Update uncrustify configuration and improve CI setup (see FreeRTOS/FreeRTOS-Kernel/pull/445) (#782) 2022-02-04 13:37:42 -08:00
xQueueReceiveFromISR.c Apply release changes to main branch (#759) 2021-12-23 10:16:27 -08:00

FreeRTOS queue proofs

In the queue predicates and proofs we use the following variable names.

  • Storage : The concrete queue storage of N*M bytes. The buffer predicate, defined in include/proof/queue.h allows us to treat the storage as a list contents of N items, each of which is M bytes.
  • N : queue length (i.e., the maximum number of items the queue can store)
  • M : size in bytes of each element
  • W : logical index of the write pointer, necessarily between 0..(N-1) such that the write pointer pcWriteTo == Storage + W * M.
  • R : logical index of the read pointer, necessarily between 0..(N-1) such that the read pointer pcReadFrom == Storage + R * M.
  • K : number of items currently in the queue corresponding to uxMessagesWaiting

The queue predicate, defined in include/proof/queue.h, relates the concrete queue storage to an abstract list abs of K items. More precisely, the key queue invariant is:

abs == take(K, rotate_left((R+1)%N, contents)) &*&
W == (R + 1 + K) % N

where (R+1)%N is the front of the queue, W is the back of the queue, rotate_left allows for the wraparound of queue storage, and take gives the first K elements.