FreeRTOS-Kernel/FreeRTOS/Test/VeriFast/queue
alfred gedeon ae92d8c6ee
Add uncrustify github workflow (#659)
* Add uncrustify github workflow

* Fix exclusion pattern

* fix find expression

* exclude uncrustify files

* Uncrustify common demo and test files

* exlude white space checking files

* Fix EOL whitespace checker

* Remove whitespaces from EOL

* Fix space at EOL

* Fix find spaces at EOL

Co-authored-by: Archit Aggarwal <architag@amazon.com>
2021-07-22 14:23:48 -07:00
..
create.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
prvCopyDataFromQueue.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
prvCopyDataToQueue.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
prvIsQueueEmpty.c Merge FreeRTOS 202104.00 to main (#585) 2021-04-29 14:53:40 -07:00
prvIsQueueFull.c Merge FreeRTOS 202104.00 to main (#585) 2021-04-29 14:53:40 -07:00
prvLockQueue.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
prvUnlockQueue.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
README.md Prove buffer lemmas (#124) 2020-07-21 09:51:20 -07:00
uxQueueMessagesWaiting.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
uxQueueSpacesAvailable.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
vQueueDelete.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
xQueueGenericSend.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
xQueueGenericSendFromISR.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
xQueueIsQueueEmptyFromISR.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
xQueueIsQueueFullFromISR.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
xQueuePeek.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
xQueuePeekFromISR.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
xQueueReceive.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07:00
xQueueReceiveFromISR.c Add uncrustify github workflow (#659) 2021-07-22 14:23:48 -07: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.