LibraryDslLibrary function descriptor DSL.
See LibraryFunctions implementation for example usage.
Type parameters in this module can be ignored for usage. They are inferred automatically and used to ensure type-safety.
type ('k, 'r) args_desc = | [] : ('r, 'r) args_descEnd of arguments. No more arguments may occur.
*)| VarArgs : (_, 'l, 'r) arg_desc -> ('l, 'r) args_descVariadic arguments, all with the same argument descriptor. Any number of arguments (including 0) may occur.
*)| :: : ('k, _, 'm) arg_desc * ('m, 'r) args_desc -> ('k, 'r) args_descCons one argument descriptor. Argument must occur.
*)Arguments descriptor. Overrides standard list syntax.
val special :
?attrs:LibraryDesc.attr list ->
('k, LibraryDesc.special) args_desc ->
'k ->
LibraryDesc.tCreate library function descriptor from arguments descriptor and continuation function, which takes as many arguments as are captured using __ and returns the corresponding LibraryDesc.special.
val special' :
?attrs:LibraryDesc.attr list ->
(LibraryDesc.special, LibraryDesc.special) args_desc ->
(unit -> LibraryDesc.special) ->
LibraryDesc.tCreate library function descriptor from arguments descriptor, which must drop all arguments, and continuation function, which takes as an unit argument and returns the corresponding LibraryDesc.special. Unlike special, this allows the LibraryDesc.special of an argumentless function to depend on options, such that they aren't evaluated at initialization time in LibraryFunctions.
val unknown :
?attrs:LibraryDesc.attr list ->
(LibraryDesc.special, LibraryDesc.special) args_desc ->
LibraryDesc.tCreate unknown library function descriptor from arguments descriptor, which must drop all arguments.
val __ :
string ->
access list ->
(GoblintCil.Cil.exp -> 'r, GoblintCil.Cil.exp list -> 'r, 'r) arg_descArgument descriptor, which captures the named argument with accesses for continuation function of special.
Argument descriptor, which captures an unnamed argument with accesses for continuation function of special.
Argument descriptor, which drops (does not capture) the named argument with accesses.
Argument descriptor, which drops (does not capture) an unnamed argument with accesses.
val r : accessShallow AccessKind.t.Read access. All immediate arguments of function calls are always read, this specifies the reading of pointed-to values.
val r_deep : accessDeep AccessKind.t.Read access. All immediate arguments of function calls are always read, this specifies the reading of pointed-to values. Rarely needed.
val w : accessShallow AccessKind.t.Write access.
val w_deep : accessDeep AccessKind.t.Write access. Rarely needed.
val f : accessShallow AccessKind.t.Free access.
val f_deep : accessDeep AccessKind.t.Free access. Rarely needed.
val s : accessShallow AccessKind.t.Spawn access.
val s_deep : accessDeep AccessKind.t.Spawn access. Rarely needed.
val c : accessShallow AccessKind.t.Spawn access, substituting function pointer calls for now (TODO).
val c_deep : accessDeep AccessKind.t.Spawn access, substituting deep function pointer calls for now (TODO)