bedrock.noimport.doc.cpp.notations
(*
* Copyright (c) 2020 BedRock Systems, Inc.
* This software is distributed under the terms of the BedRock Open-Source License.
* See the LICENSE-BedRock file in the repository root for details.
*)
* Copyright (c) 2020 BedRock Systems, Inc.
* This software is distributed under the terms of the BedRock Open-Source License.
* See the LICENSE-BedRock file in the repository root for details.
*)
Path notations
State Predicates
mpred is the type of predicates that hold on the (system) state.Representation Predicates
Rep is the type of predicates that hold "at a location". Note that Rep is essentially ptr -> mpred.
because ptr and val are also "location"-like, representation predicates
can also hold at them.
all of these mean that the location is valid, i.e. it is a valid C/C++
pointer, but do not (necessarily) imply that the pointer is non-null.
when the location is a relative location, the predicate itself becomes
relative, i.e. the type changes from mpred to Rep.
because field is also "offset"-like, they can be used as well.
note: the value to the right of a _ |-> _ is *always* a Rep regardless
of whether the left-side is a ptr or an offset
locations can be chained together with offsets to produce new locations.
the following represents the location l.f
note that this also works for offsets, but with slightly different syntax:
_ ,, _ can also be used to combine offsets into larger offsets
Example _8 : offset := o ,, _field f.
Example _9 : offset := _field f ,, o.
Example _10 : offset := o ,, _field f ,, _field f. (* is parsed as (o ,, f) ,, f *)
Example _9 : offset := _field f ,, o.
Example _10 : offset := o ,, _field f ,, _field f. (* is parsed as (o ,, f) ,, f *)
using this notation, you can also assert that a Rep holds at a compound
location, e.g. the following means that R holds at the location `l.f`.
note that there is no difference between a compound location and a "basic"
location, they can be used interchangably
for uniformity, arbitrary Reps can be positioned, allowing us to write
predicates such as the following, which is logically equivalent to _11.
a benefit to the nested style is that it allows us to factor repeated paths
out, e.g.
which is logically equivalent to the following
in addition to fields, we can also use array subscripts
Example _13 : ptr := l .[ Tint ! 5 ]. (* l[5] (when l is an `int *`) *)
Example _14 : ptr := l .[ Tuchar ! 5 ]. (* l[5] (when l is an `unsigned char *`) *)
Example _14 : ptr := l .[ Tuchar ! 5 ]. (* l[5] (when l is an `unsigned char *`) *)
since these are locations, we can use them to position representation
predicates
similarly, they can be used with offsets and Reps
paths can be chained arbitrarily
Example _20 := l |-> _field f .[ Tint ! 0 ] |-> R.
Example _21 := l .[ Tint ! 0 ] .[ Tint ! 3 ] |-> R.
Example _22 := l ., f .[ Tint ! 0 ] ., f |-> R.
Example _23 := l ., f .[ Tint ! 1 ] .[ Tint ! 0 ] ., f |-> R.
Example _24 := p ., f .[ Tint ! 1 ] .[ Tint ! 0 ] ., f |-> R.
Example _25 := o ., f .[ Tint ! 1 ] .[ Tint ! 0 ] ., f |-> R.
Example _26 := o ., f .[ Tint ! 1 ] .[ Tint ! 0 ] ., f |-> R.
Example _27 := .[ Tint ! 1 ] |-> R.
Example _28 := _field f .[ Tint ! 1 ] |-> R.
Example _29 := p .[ Tint ! 1 ] |-> R.
Example _30 := _eqv v .[ Tint ! 1 ] |-> R.
End with_env.
Example _21 := l .[ Tint ! 0 ] .[ Tint ! 3 ] |-> R.
Example _22 := l ., f .[ Tint ! 0 ] ., f |-> R.
Example _23 := l ., f .[ Tint ! 1 ] .[ Tint ! 0 ] ., f |-> R.
Example _24 := p ., f .[ Tint ! 1 ] .[ Tint ! 0 ] ., f |-> R.
Example _25 := o ., f .[ Tint ! 1 ] .[ Tint ! 0 ] ., f |-> R.
Example _26 := o ., f .[ Tint ! 1 ] .[ Tint ! 0 ] ., f |-> R.
Example _27 := .[ Tint ! 1 ] |-> R.
Example _28 := _field f .[ Tint ! 1 ] |-> R.
Example _29 := p .[ Tint ! 1 ] |-> R.
Example _30 := _eqv v .[ Tint ! 1 ] |-> R.
End with_env.