Frama_c_kernel.Parameter_sigSignatures for command line options.
One of these signatures is required to implement a new command line option.
module type Input = sig ... endMinimal signature to implement for each parameter corresponding to an option on the command line argument.
module type Input_with_arg = sig ... endMinimal signature to implement for each parameter corresponding to an option on the command line argument which requires an argument.
module type Input_collection = sig ... endMinimal signature for collections of custom datatype
module type String_datatype = sig ... endSignature required to build custom collection parameters in which elements are convertible to string.
module type String_datatype_with_collections = sig ... endSignature requires to build custom collection parameters in which elements are convertible to string.
module type Value_datatype = sig ... endSignature of the optional value associated to the key and required to build map parameters.
module type Multiple_value_datatype = sig ... endSignature of the optional value associated to the key and required to build multiple map parameters. Almost similar to Value_datatype.
Signatures corresponding to a command line option of a specific type.
module type S_no_parameter = sig ... endGeneric signature of a parameter, without parameter.
module type S = sig ... endGeneric signature of a parameter.
module type Bool = sig ... endSignature for a boolean parameter.
module type Int = sig ... endSignature for an integer parameter.
module type String = sig ... endSignature for a string parameter.
module type With_output = sig ... endSignature for a boolean parameter that causes something to be output.
module type Filepath = sig ... endsignature for normalized pathnames.
module type Specific_dir = sig ... endsignature for searching files in a specific directory.
module type Collection_category = sig ... endSignature for a category over a collection.
module type Collection = sig ... endCommon signature to all collections.
module type Set = sig ... endSignature for sets as command line parameters.
module type String_set =
Set with type elt = string and type t = Datatype.String.Set.tmodule type Kernel_function_set =
Set
with type elt = Cil_types.kernel_function
and type t = Cil_datatype.Kf.Set.tSet of defined kernel functions. If you want to also include pure prototype, use Parameter_customize.argument_may_be_fundecl.
module type Fundec_set =
Set with type elt = Cil_types.fundec and type t = Cil_datatype.Fundec.Set.tmodule type List = sig ... endSignature for lists as command line parameters.
module type String_list = List with type elt = string and type t = string listmodule type Filepath_list =
List
with type elt = Datatype.Filepath.t
and type t = Datatype.Filepath.t listmodule type Map = sig ... endSignature for maps as command line parameters.
module type Multiple_map = sig ... endSignature for multiple maps as command line parameters. Almost similar to Map.
module type Filepath_map = Map with type key = Datatype.Filepath.tmodule type Builder = sig ... endSignatures containing the different functors which may be used to generate new command line options.