effect
stringclasses
48 values
original_source_type
stringlengths
0
23k
opens_and_abbrevs
listlengths
2
92
isa_cross_project_example
bool
1 class
source_definition
stringlengths
9
57.9k
partial_definition
stringlengths
7
23.3k
is_div
bool
2 classes
is_type
null
is_proof
bool
2 classes
completed_definiton
stringlengths
1
250k
dependencies
dict
effect_flags
listlengths
0
2
ideal_premises
listlengths
0
236
mutual_with
listlengths
0
11
file_context
stringlengths
0
407k
interleaved
bool
1 class
is_simply_typed
bool
2 classes
file_name
stringlengths
5
48
vconfig
dict
is_simple_lemma
null
source_type
stringlengths
10
23k
proof_features
listlengths
0
1
name
stringlengths
8
95
source
dict
verbose_type
stringlengths
1
7.42k
source_range
dict
Prims.Tot
val to_uint8 (#n: nat{n <= 8}) (x: BV.bv_t n) : Tot (y: U8.t{U8.v y < pow2 n})
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "Seq" }, { "abbrev": true, "full_module": "FStar.UInt8", "short_module": "U8" }, { "abbrev": true, "full_module": "FStar.BitVector", "short_module": "BV" }, { "abbrev": false, "full_module": "FStar....
false
let rec to_uint8 (#n: nat { n <= 8 }) (x: BV.bv_t n) : Tot (y: U8.t { U8.v y < pow2 n }) = if n = 0 then 0uy else let hi = to_uint8 #(n - 1) (Seq.slice x 0 (n - 1)) in let hi' = hi `U8.mul` 2uy in let (r: U8.t { U8.v r < 2 }) = if Seq.index x (n - 1) then 1uy else 0uy in hi' `U8.add` r
val to_uint8 (#n: nat{n <= 8}) (x: BV.bv_t n) : Tot (y: U8.t{U8.v y < pow2 n}) let rec to_uint8 (#n: nat{n <= 8}) (x: BV.bv_t n) : Tot (y: U8.t{U8.v y < pow2 n}) =
false
null
false
if n = 0 then 0uy else let hi = to_uint8 #(n - 1) (Seq.slice x 0 (n - 1)) in let hi' = hi `U8.mul` 2uy in let r:r: U8.t{U8.v r < 2} = if Seq.index x (n - 1) then 1uy else 0uy in hi' `U8.add` r
{ "checked_file": "LowParse.Spec.BitVector.fst.checked", "dependencies": [ "prims.fst.checked", "LowParse.Spec.Int.fsti.checked", "LowParse.Spec.Combinators.fsti.checked", "LowParse.Spec.BoundedInt.fsti.checked", "FStar.UInt8.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Seq.fst.che...
[ "total" ]
[ "Prims.nat", "Prims.b2t", "Prims.op_LessThanOrEqual", "FStar.BitVector.bv_t", "Prims.op_Equality", "Prims.int", "FStar.UInt8.__uint_to_t", "Prims.bool", "FStar.UInt8.add", "FStar.UInt8.t", "Prims.op_LessThan", "FStar.UInt8.v", "FStar.Seq.Base.index", "Prims.op_Subtraction", "FStar.UInt8....
[]
module LowParse.Spec.BitVector open FStar.Mul module BV = FStar.BitVector module U8 = FStar.UInt8 module Seq = FStar.Seq (* Big-endian conversion of a bit vector to a UInt8 *) let rec to_uint8 (#n: nat { n <= 8 }) (x: BV.bv_t n)
false
false
LowParse.Spec.BitVector.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val to_uint8 (#n: nat{n <= 8}) (x: BV.bv_t n) : Tot (y: U8.t{U8.v y < pow2 n})
[ "recursion" ]
LowParse.Spec.BitVector.to_uint8
{ "file_name": "src/lowparse/LowParse.Spec.BitVector.fst", "git_rev": "446a08ce38df905547cf20f28c43776b22b8087a", "git_url": "https://github.com/project-everest/everparse.git", "project_name": "everparse" }
x: FStar.BitVector.bv_t n -> y: FStar.UInt8.t{FStar.UInt8.v y < Prims.pow2 n}
{ "end_col": 18, "end_line": 20, "start_col": 2, "start_line": 14 }
FStar.Pervasives.Lemma
val to_uint8_of_uint8 (n: nat{n <= 8}) (x: U8.t{U8.v x < pow2 n}) : Lemma (to_uint8 (of_uint8 n x) == x)
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "Seq" }, { "abbrev": true, "full_module": "FStar.UInt8", "short_module": "U8" }, { "abbrev": true, "full_module": "FStar.BitVector", "short_module": "BV" }, { "abbrev": false, "full_module": "FStar....
false
let rec to_uint8_of_uint8 (n: nat { n <= 8 }) (x: U8.t { U8.v x < pow2 n }) : Lemma (to_uint8 (of_uint8 n x) == x) = if n = 0 then () else begin assert (Seq.slice (of_uint8 n x) 0 (n - 1) `Seq.equal` of_uint8 (n - 1) (x `U8.div` 2uy)); to_uint8_of_uint8 (n - 1) (x `U8.div` 2uy) end
val to_uint8_of_uint8 (n: nat{n <= 8}) (x: U8.t{U8.v x < pow2 n}) : Lemma (to_uint8 (of_uint8 n x) == x) let rec to_uint8_of_uint8 (n: nat{n <= 8}) (x: U8.t{U8.v x < pow2 n}) : Lemma (to_uint8 (of_uint8 n x) == x) =
false
null
true
if n = 0 then () else (assert ((Seq.slice (of_uint8 n x) 0 (n - 1)) `Seq.equal` (of_uint8 (n - 1) (x `U8.div` 2uy))); to_uint8_of_uint8 (n - 1) (x `U8.div` 2uy))
{ "checked_file": "LowParse.Spec.BitVector.fst.checked", "dependencies": [ "prims.fst.checked", "LowParse.Spec.Int.fsti.checked", "LowParse.Spec.Combinators.fsti.checked", "LowParse.Spec.BoundedInt.fsti.checked", "FStar.UInt8.fsti.checked", "FStar.UInt32.fsti.checked", "FStar.Seq.fst.che...
[ "lemma" ]
[ "Prims.nat", "Prims.b2t", "Prims.op_LessThanOrEqual", "FStar.UInt8.t", "Prims.op_LessThan", "FStar.UInt8.v", "Prims.pow2", "Prims.op_Equality", "Prims.int", "Prims.bool", "LowParse.Spec.BitVector.to_uint8_of_uint8", "Prims.op_Subtraction", "FStar.UInt8.div", "FStar.UInt8.__uint_to_t", "P...
[]
module LowParse.Spec.BitVector open FStar.Mul module BV = FStar.BitVector module U8 = FStar.UInt8 module Seq = FStar.Seq (* Big-endian conversion of a bit vector to a UInt8 *) let rec to_uint8 (#n: nat { n <= 8 }) (x: BV.bv_t n) : Tot (y: U8.t { U8.v y < pow2 n }) = if n = 0 then 0uy else let hi = to_uin...
false
false
LowParse.Spec.BitVector.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 8, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val to_uint8_of_uint8 (n: nat{n <= 8}) (x: U8.t{U8.v x < pow2 n}) : Lemma (to_uint8 (of_uint8 n x) == x)
[ "recursion" ]
LowParse.Spec.BitVector.to_uint8_of_uint8
{ "file_name": "src/lowparse/LowParse.Spec.BitVector.fst", "git_rev": "446a08ce38df905547cf20f28c43776b22b8087a", "git_url": "https://github.com/project-everest/everparse.git", "project_name": "everparse" }
n: Prims.nat{n <= 8} -> x: FStar.UInt8.t{FStar.UInt8.v x < Prims.pow2 n} -> FStar.Pervasives.Lemma (ensures LowParse.Spec.BitVector.to_uint8 (LowParse.Spec.BitVector.of_uint8 n x) == x)
{ "end_col": 5, "end_line": 44, "start_col": 2, "start_line": 39 }
Prims.Tot
val is_total_or_gtotal : comp -> Tot bool
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let is_total_or_gtotal c = Some? (get_total_or_gtotal_ret_type c)
val is_total_or_gtotal : comp -> Tot bool let is_total_or_gtotal c =
false
null
false
Some? (get_total_or_gtotal_ret_type c)
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[ "FStar.Reflection.Types.comp", "FStar.Pervasives.Native.uu___is_Some", "FStar.Reflection.Types.typ", "FStar.InteractiveHelpers.ExploreTerm.get_total_or_gtotal_ret_type", "Prims.bool" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val is_total_or_gtotal : comp -> Tot bool
[]
FStar.InteractiveHelpers.ExploreTerm.is_total_or_gtotal
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
c: FStar.Reflection.Types.comp -> Prims.bool
{ "end_col": 40, "end_line": 131, "start_col": 2, "start_line": 131 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let st_effect_qn = "FStar.HyperStack.ST.ST"
let st_effect_qn =
false
null
false
"FStar.HyperStack.ST.ST"
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val st_effect_qn : Prims.string
[]
FStar.InteractiveHelpers.ExploreTerm.st_effect_qn
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
Prims.string
{ "end_col": 43, "end_line": 23, "start_col": 19, "start_line": 23 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let pure_hoare_effect_qn = "Prims.Pure"
let pure_hoare_effect_qn =
false
null
false
"Prims.Pure"
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val pure_hoare_effect_qn : Prims.string
[]
FStar.InteractiveHelpers.ExploreTerm.pure_hoare_effect_qn
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
Prims.string
{ "end_col": 39, "end_line": 21, "start_col": 27, "start_line": 21 }
Prims.Tot
val get_total_or_gtotal_ret_type : comp -> Tot (option typ)
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let get_total_or_gtotal_ret_type c = match inspect_comp c with | C_Total ret_ty | C_GTotal ret_ty -> Some ret_ty | _ -> None
val get_total_or_gtotal_ret_type : comp -> Tot (option typ) let get_total_or_gtotal_ret_type c =
false
null
false
match inspect_comp c with | C_Total ret_ty | C_GTotal ret_ty -> Some ret_ty | _ -> None
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[ "FStar.Reflection.Types.comp", "FStar.Reflection.V1.Builtins.inspect_comp", "FStar.Reflection.Types.typ", "FStar.Pervasives.Native.Some", "FStar.Reflection.V1.Data.comp_view", "FStar.Pervasives.Native.None", "FStar.Pervasives.Native.option" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val get_total_or_gtotal_ret_type : comp -> Tot (option typ)
[]
FStar.InteractiveHelpers.ExploreTerm.get_total_or_gtotal_ret_type
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
c: FStar.Reflection.Types.comp -> FStar.Pervasives.Native.option FStar.Reflection.Types.typ
{ "end_col": 13, "end_line": 120, "start_col": 2, "start_line": 118 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let pure_effect_qn = "Prims.PURE"
let pure_effect_qn =
false
null
false
"Prims.PURE"
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val pure_effect_qn : Prims.string
[]
FStar.InteractiveHelpers.ExploreTerm.pure_effect_qn
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
Prims.string
{ "end_col": 33, "end_line": 20, "start_col": 21, "start_line": 20 }
FStar.Tactics.Effect.Tac
val get_type_info_from_type (ty: typ) : Tac type_info
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let get_type_info_from_type (ty:typ) : Tac type_info = match inspect ty with | Tv_Refine bv sort refin -> let raw_type = prettify_term false sort in let b : binder = mk_binder bv sort in let refin = prettify_term false refin in let refin = pack (Tv_Abs b refin) in mk_type_info raw_type (Some re...
val get_type_info_from_type (ty: typ) : Tac type_info let get_type_info_from_type (ty: typ) : Tac type_info =
true
null
false
match inspect ty with | Tv_Refine bv sort refin -> let raw_type = prettify_term false sort in let b:binder = mk_binder bv sort in let refin = prettify_term false refin in let refin = pack (Tv_Abs b refin) in mk_type_info raw_type (Some refin) | _ -> let ty = prettify_term false ty in mk_type_info ty None
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.typ", "FStar.Reflection.Types.bv", "FStar.Reflection.Types.term", "FStar.InteractiveHelpers.ExploreTerm.mk_type_info", "FStar.Pervasives.Native.Some", "FStar.InteractiveHelpers.ExploreTerm.type_info", "FStar.Tactics.V1.Builtins.pack", "FStar.Reflection.V1.Data.Tv_Abs", "FStar...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val get_type_info_from_type (ty: typ) : Tac type_info
[]
FStar.InteractiveHelpers.ExploreTerm.get_type_info_from_type
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
ty: FStar.Reflection.Types.typ -> FStar.Tactics.Effect.Tac FStar.InteractiveHelpers.ExploreTerm.type_info
{ "end_col": 24, "end_line": 107, "start_col": 2, "start_line": 98 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let unit_type_info = mk_type_info (`unit) None
let unit_type_info =
false
null
false
mk_type_info (`unit) None
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[ "FStar.InteractiveHelpers.ExploreTerm.mk_type_info", "FStar.Pervasives.Native.None", "FStar.Reflection.Types.term" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val unit_type_info : FStar.InteractiveHelpers.ExploreTerm.type_info
[]
FStar.InteractiveHelpers.ExploreTerm.unit_type_info
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
FStar.InteractiveHelpers.ExploreTerm.type_info
{ "end_col": 46, "end_line": 87, "start_col": 21, "start_line": 87 }
FStar.Tactics.Effect.Tac
val subst_binder_in_comp : env -> binder -> term -> comp -> Tac comp
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let subst_binder_in_comp e b t c = subst_bv_in_comp e (bv_of_binder b) (binder_sort b) t c
val subst_binder_in_comp : env -> binder -> term -> comp -> Tac comp let subst_binder_in_comp e b t c =
true
null
false
subst_bv_in_comp e (bv_of_binder b) (binder_sort b) t c
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.env", "FStar.Reflection.Types.binder", "FStar.Reflection.Types.term", "FStar.Reflection.Types.comp", "FStar.InteractiveHelpers.ExploreTerm.subst_bv_in_comp", "FStar.Reflection.V1.Derived.bv_of_binder", "FStar.Reflection.Types.typ", "FStar.Tactics.V1.Derived.binder_sort" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val subst_binder_in_comp : env -> binder -> term -> comp -> Tac comp
[]
FStar.InteractiveHelpers.ExploreTerm.subst_binder_in_comp
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
e: FStar.Reflection.Types.env -> b: FStar.Reflection.Types.binder -> t: FStar.Reflection.Types.term -> c: FStar.Reflection.Types.comp -> FStar.Tactics.Effect.Tac FStar.Reflection.Types.comp
{ "end_col": 57, "end_line": 201, "start_col": 2, "start_line": 201 }
FStar.Tactics.Effect.Tac
val is_unit_type : typ -> Tac bool
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let is_unit_type ty = match inspect ty with | Tv_FVar fv -> fv_eq_name fv Reflection.Const.unit_lid | _ -> false
val is_unit_type : typ -> Tac bool let is_unit_type ty =
true
null
false
match inspect ty with | Tv_FVar fv -> fv_eq_name fv Reflection.Const.unit_lid | _ -> false
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.typ", "FStar.Reflection.Types.fv", "FStar.InteractiveHelpers.Base.fv_eq_name", "FStar.Reflection.Const.unit_lid", "FStar.Reflection.V1.Data.term_view", "Prims.bool", "FStar.Tactics.V1.Builtins.inspect" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val is_unit_type : typ -> Tac bool
[]
FStar.InteractiveHelpers.ExploreTerm.is_unit_type
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
ty: FStar.Reflection.Types.typ -> FStar.Tactics.Effect.Tac Prims.bool
{ "end_col": 14, "end_line": 137, "start_col": 2, "start_line": 135 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let stack_effect_qn = "FStar.HyperStack.ST.Stack"
let stack_effect_qn =
false
null
false
"FStar.HyperStack.ST.Stack"
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val stack_effect_qn : Prims.string
[]
FStar.InteractiveHelpers.ExploreTerm.stack_effect_qn
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
Prims.string
{ "end_col": 49, "end_line": 22, "start_col": 22, "start_line": 22 }
FStar.Tactics.Effect.Tac
val safe_tcc (e:env) (t:term) : Tac (option comp)
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let safe_tcc e t = try Some (tcc e t) with | _ -> None
val safe_tcc (e:env) (t:term) : Tac (option comp) let safe_tcc e t =
true
null
false
try Some (tcc e t) with | _ -> None
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.env", "FStar.Reflection.Types.term", "FStar.Tactics.V1.Derived.try_with", "FStar.Pervasives.Native.option", "FStar.Reflection.Types.comp", "Prims.unit", "FStar.Pervasives.Native.Some", "FStar.Tactics.V1.Builtins.tcc", "Prims.exn", "FStar.Pervasives.Native.None" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val safe_tcc (e:env) (t:term) : Tac (option comp)
[]
FStar.InteractiveHelpers.ExploreTerm.safe_tcc
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
e: FStar.Reflection.Types.env -> t: FStar.Reflection.Types.term -> FStar.Tactics.Effect.Tac (FStar.Pervasives.Native.option FStar.Reflection.Types.comp)
{ "end_col": 37, "end_line": 95, "start_col": 2, "start_line": 95 }
FStar.Tactics.Effect.Tac
val type_info_to_string : type_info -> Tac string
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let type_info_to_string info = "Mktype_info (" ^ term_to_string info.ty ^ ") (" ^ option_to_string term_to_string info.refin ^ ")"
val type_info_to_string : type_info -> Tac string let type_info_to_string info =
true
null
false
"Mktype_info (" ^ term_to_string info.ty ^ ") (" ^ option_to_string term_to_string info.refin ^ ")"
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.InteractiveHelpers.ExploreTerm.type_info", "Prims.op_Hat", "Prims.string", "FStar.InteractiveHelpers.Base.option_to_string", "FStar.Reflection.Types.term", "FStar.Tactics.V1.Builtins.term_to_string", "FStar.InteractiveHelpers.ExploreTerm.__proj__Mktype_info__item__refin", "FStar.InteractiveHelp...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val type_info_to_string : type_info -> Tac string
[]
FStar.InteractiveHelpers.ExploreTerm.type_info_to_string
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
info: FStar.InteractiveHelpers.ExploreTerm.type_info -> FStar.Tactics.Effect.Tac Prims.string
{ "end_col": 50, "end_line": 85, "start_col": 2, "start_line": 83 }
Prims.Tot
val effect_name_to_type (ename : name) : Tot effect_type
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let effect_name_to_type (ename : name) : Tot effect_type = let ename = flatten_name ename in if ename = pure_effect_qn then E_PURE else if ename = pure_hoare_effect_qn then E_Pure else if ename = stack_effect_qn then E_Stack else if ename = st_effect_qn then E_ST else E_Unknown
val effect_name_to_type (ename : name) : Tot effect_type let effect_name_to_type (ename: name) : Tot effect_type =
false
null
false
let ename = flatten_name ename in if ename = pure_effect_qn then E_PURE else if ename = pure_hoare_effect_qn then E_Pure else if ename = stack_effect_qn then E_Stack else if ename = st_effect_qn then E_ST else E_Unknown
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[ "FStar.Reflection.Types.name", "Prims.op_Equality", "Prims.string", "FStar.InteractiveHelpers.ExploreTerm.pure_effect_qn", "FStar.InteractiveHelpers.ExploreTerm.E_PURE", "Prims.bool", "FStar.InteractiveHelpers.ExploreTerm.pure_hoare_effect_qn", "FStar.InteractiveHelpers.ExploreTerm.E_Pure", "FStar.I...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val effect_name_to_type (ename : name) : Tot effect_type
[]
FStar.InteractiveHelpers.ExploreTerm.effect_name_to_type
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
ename: FStar.Reflection.Types.name -> FStar.InteractiveHelpers.ExploreTerm.effect_type
{ "end_col": 16, "end_line": 65, "start_col": 58, "start_line": 59 }
FStar.Tactics.Effect.Tac
val inst_comp_once : env -> comp -> term -> Tac comp
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let inst_comp_once e c t = let ty = get_comp_ret_type c in let ty' = unfold_until_arrow e ty in begin match inspect ty' with | Tv_Arrow b1 c1 -> subst_binder_in_comp e b1 t c1 | _ -> (* Inconsistent state *) mfail "inst_comp_once: inconsistent state" end
val inst_comp_once : env -> comp -> term -> Tac comp let inst_comp_once e c t =
true
null
false
let ty = get_comp_ret_type c in let ty' = unfold_until_arrow e ty in match inspect ty' with | Tv_Arrow b1 c1 -> subst_binder_in_comp e b1 t c1 | _ -> mfail "inst_comp_once: inconsistent state"
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.env", "FStar.Reflection.Types.comp", "FStar.Reflection.Types.term", "FStar.Reflection.Types.binder", "FStar.InteractiveHelpers.ExploreTerm.subst_binder_in_comp", "FStar.Reflection.V1.Data.term_view", "FStar.InteractiveHelpers.Base.mfail", "FStar.Tactics.V1.Builtins.inspect", ...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val inst_comp_once : env -> comp -> term -> Tac comp
[]
FStar.InteractiveHelpers.ExploreTerm.inst_comp_once
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
e: FStar.Reflection.Types.env -> c: FStar.Reflection.Types.comp -> t: FStar.Reflection.Types.term -> FStar.Tactics.Effect.Tac FStar.Reflection.Types.comp
{ "end_col": 5, "end_line": 263, "start_col": 26, "start_line": 255 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let explorer (a : Type) = a -> genv -> list (genv & term_view) -> option typ_or_comp -> term_view -> Tac (a & ctrl_flag)
let explorer (a: Type) =
false
null
false
a -> genv -> list (genv & term_view) -> option typ_or_comp -> term_view -> Tac (a & ctrl_flag)
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[ "FStar.InteractiveHelpers.Base.genv", "Prims.list", "FStar.Pervasives.Native.tuple2", "FStar.Reflection.V1.Data.term_view", "FStar.Pervasives.Native.option", "FStar.InteractiveHelpers.ExploreTerm.typ_or_comp", "FStar.Tactics.Types.ctrl_flag" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val explorer : a: Type -> Type
[]
FStar.InteractiveHelpers.ExploreTerm.explorer
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
a: Type -> Type
{ "end_col": 21, "end_line": 431, "start_col": 2, "start_line": 430 }
FStar.Tactics.Effect.Tac
val subst_bv_in_comp : env -> bv -> typ -> term -> comp -> Tac comp
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let subst_bv_in_comp e b sort t c = apply_subst_in_comp e c [((b, sort), t)]
val subst_bv_in_comp : env -> bv -> typ -> term -> comp -> Tac comp let subst_bv_in_comp e b sort t c =
true
null
false
apply_subst_in_comp e c [((b, sort), t)]
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.env", "FStar.Reflection.Types.bv", "FStar.Reflection.Types.typ", "FStar.Reflection.Types.term", "FStar.Reflection.Types.comp", "FStar.InteractiveHelpers.Base.apply_subst_in_comp", "Prims.Cons", "FStar.Pervasives.Native.tuple2", "FStar.Pervasives.Native.Mktuple2", "Prims.Nil...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val subst_bv_in_comp : env -> bv -> typ -> term -> comp -> Tac comp
[]
FStar.InteractiveHelpers.ExploreTerm.subst_bv_in_comp
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
e: FStar.Reflection.Types.env -> b: FStar.Reflection.Types.bv -> sort: FStar.Reflection.Types.typ -> t: FStar.Reflection.Types.term -> c: FStar.Reflection.Types.comp -> FStar.Tactics.Effect.Tac FStar.Reflection.Types.comp
{ "end_col": 42, "end_line": 197, "start_col": 2, "start_line": 197 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let mk_type_info = Mktype_info
let mk_type_info =
false
null
false
Mktype_info
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[ "FStar.InteractiveHelpers.ExploreTerm.Mktype_info" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val mk_type_info : ty: FStar.Reflection.Types.typ -> refin: FStar.Pervasives.Native.option FStar.Reflection.Types.term -> FStar.InteractiveHelpers.ExploreTerm.type_info
[]
FStar.InteractiveHelpers.ExploreTerm.mk_type_info
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
ty: FStar.Reflection.Types.typ -> refin: FStar.Pervasives.Native.option FStar.Reflection.Types.term -> FStar.InteractiveHelpers.ExploreTerm.type_info
{ "end_col": 30, "end_line": 79, "start_col": 19, "start_line": 79 }
FStar.Tactics.Effect.Tac
val term_has_shadowed_variables : genv -> term -> Tac bool
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let term_has_shadowed_variables ge t = let fvl = free_in t in Some? (List.Tot.tryFind (bv_is_shadowed ge) fvl)
val term_has_shadowed_variables : genv -> term -> Tac bool let term_has_shadowed_variables ge t =
true
null
false
let fvl = free_in t in Some? (List.Tot.tryFind (bv_is_shadowed ge) fvl)
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.InteractiveHelpers.Base.genv", "FStar.Reflection.Types.term", "FStar.Pervasives.Native.uu___is_Some", "FStar.Reflection.Types.bv", "FStar.List.Tot.Base.tryFind", "FStar.InteractiveHelpers.Base.bv_is_shadowed", "Prims.bool", "Prims.list", "FStar.InteractiveHelpers.ExploreTerm.free_in" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val term_has_shadowed_variables : genv -> term -> Tac bool
[]
FStar.InteractiveHelpers.ExploreTerm.term_has_shadowed_variables
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
ge: FStar.InteractiveHelpers.Base.genv -> t: FStar.Reflection.Types.term -> FStar.Tactics.Effect.Tac Prims.bool
{ "end_col": 50, "end_line": 619, "start_col": 38, "start_line": 617 }
FStar.Tactics.Effect.Tac
val safe_tc (e:env) (t:term) : Tac (option term)
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let safe_tc e t = try Some (tc e t) with | _ -> None
val safe_tc (e:env) (t:term) : Tac (option term) let safe_tc e t =
true
null
false
try Some (tc e t) with | _ -> None
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.env", "FStar.Reflection.Types.term", "FStar.Tactics.V1.Derived.try_with", "FStar.Pervasives.Native.option", "Prims.unit", "FStar.Pervasives.Native.Some", "FStar.Tactics.V1.Builtins.tc", "Prims.exn", "FStar.Pervasives.Native.None" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val safe_tc (e:env) (t:term) : Tac (option term)
[]
FStar.InteractiveHelpers.ExploreTerm.safe_tc
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
e: FStar.Reflection.Types.env -> t: FStar.Reflection.Types.term -> FStar.Tactics.Effect.Tac (FStar.Pervasives.Native.option FStar.Reflection.Types.term)
{ "end_col": 36, "end_line": 91, "start_col": 2, "start_line": 91 }
FStar.Tactics.Effect.Tac
val shadowed_free_in : genv -> term -> Tac (list bv)
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let shadowed_free_in ge t = let fvl = free_in t in List.Tot.filter (fun bv -> bv_is_shadowed ge bv) fvl
val shadowed_free_in : genv -> term -> Tac (list bv) let shadowed_free_in ge t =
true
null
false
let fvl = free_in t in List.Tot.filter (fun bv -> bv_is_shadowed ge bv) fvl
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.InteractiveHelpers.Base.genv", "FStar.Reflection.Types.term", "FStar.List.Tot.Base.filter", "FStar.Reflection.Types.bv", "FStar.InteractiveHelpers.Base.bv_is_shadowed", "Prims.bool", "Prims.list", "FStar.InteractiveHelpers.ExploreTerm.free_in" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val shadowed_free_in : genv -> term -> Tac (list bv)
[]
FStar.InteractiveHelpers.ExploreTerm.shadowed_free_in
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
ge: FStar.InteractiveHelpers.Base.genv -> t: FStar.Reflection.Types.term -> FStar.Tactics.Effect.Tac (Prims.list FStar.Reflection.Types.bv)
{ "end_col": 54, "end_line": 613, "start_col": 27, "start_line": 611 }
FStar.Tactics.Effect.Tac
val _abs_update_typ (b: binder) (ty: typ) (pl: list binder) (e: env) : Tac typ_or_comp
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let _abs_update_typ (b:binder) (ty:typ) (pl:list binder) (e:env) : Tac typ_or_comp = (* Try to reveal an arrow *) try let ty' = unfold_until_arrow e ty in begin match inspect ty' with | Tv_Arrow b1 c1 -> let c1' = subst_binder_in_comp e b1 (pack (Tv_Var (bv_of_binder b))) c1 in TC_Comp c1'...
val _abs_update_typ (b: binder) (ty: typ) (pl: list binder) (e: env) : Tac typ_or_comp let _abs_update_typ (b: binder) (ty: typ) (pl: list binder) (e: env) : Tac typ_or_comp =
true
null
false
try let ty' = unfold_until_arrow e ty in match inspect ty' with | Tv_Arrow b1 c1 -> let c1' = subst_binder_in_comp e b1 (pack (Tv_Var (bv_of_binder b))) c1 in TC_Comp c1' (b :: pl) 0 | _ -> mfail "_abs_update_typ: inconsistent state" with | MetaAnalysis msg -> mfail ("_abs_update_typ: could not find a...
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.binder", "FStar.Reflection.Types.typ", "Prims.list", "FStar.Reflection.Types.env", "FStar.Tactics.V1.Derived.try_with", "FStar.InteractiveHelpers.ExploreTerm.typ_or_comp", "Prims.unit", "FStar.Reflection.Types.comp", "FStar.InteractiveHelpers.ExploreTerm.TC_Comp", "Prims.Co...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val _abs_update_typ (b: binder) (ty: typ) (pl: list binder) (e: env) : Tac typ_or_comp
[]
FStar.InteractiveHelpers.ExploreTerm._abs_update_typ
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
b: FStar.Reflection.Types.binder -> ty: FStar.Reflection.Types.typ -> pl: Prims.list FStar.Reflection.Types.binder -> e: FStar.Reflection.Types.env -> FStar.Tactics.Effect.Tac FStar.InteractiveHelpers.ExploreTerm.typ_or_comp
{ "end_col": 20, "end_line": 300, "start_col": 2, "start_line": 288 }
FStar.Tactics.Effect.Tac
val abs_free_in : genv -> term -> Tac (list (bv & typ))
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let abs_free_in ge t = let fvl = free_in t in let absl = List.rev (genv_abstract_bvs ge) in let is_free_in_term bv = Some? (List.Tot.find (bv_eq bv) fvl) in let absfree = List.Tot.concatMap (fun (bv, ty) -> if is_free_in_term bv then [bv,ty] else []) absl in absfree
val abs_free_in : genv -> term -> Tac (list (bv & typ)) let abs_free_in ge t =
true
null
false
let fvl = free_in t in let absl = List.rev (genv_abstract_bvs ge) in let is_free_in_term bv = Some? (List.Tot.find (bv_eq bv) fvl) in let absfree = List.Tot.concatMap (fun (bv, ty) -> if is_free_in_term bv then [bv, ty] else []) absl in absfree
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.InteractiveHelpers.Base.genv", "FStar.Reflection.Types.term", "Prims.list", "FStar.Pervasives.Native.tuple2", "FStar.Reflection.Types.bv", "FStar.Reflection.Types.typ", "FStar.List.Tot.Base.concatMap", "Prims.Cons", "FStar.Pervasives.Native.Mktuple2", "Prims.Nil", "Prims.bool", "FStar.P...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val abs_free_in : genv -> term -> Tac (list (bv & typ))
[]
FStar.InteractiveHelpers.ExploreTerm.abs_free_in
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
ge: FStar.InteractiveHelpers.Base.genv -> t: FStar.Reflection.Types.term -> FStar.Tactics.Effect.Tac (Prims.list (FStar.Reflection.Types.bv * FStar.Reflection.Types.typ))
{ "end_col": 9, "end_line": 607, "start_col": 22, "start_line": 598 }
FStar.Tactics.Effect.Tac
val unfold_until_arrow : env -> typ -> Tac typ
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let rec unfold_until_arrow e ty0 = if Tv_Arrow? (inspect ty0) then ty0 else begin (* Start by normalizing the term - note that this operation is expensive *) let ty = norm_term_env e [] ty0 in (* Helper to unfold top-level identifiers *) let unfold_fv (fv : fv) : Tac term = let ty = pack (...
val unfold_until_arrow : env -> typ -> Tac typ let rec unfold_until_arrow e ty0 =
true
null
false
if Tv_Arrow? (inspect ty0) then ty0 else let ty = norm_term_env e [] ty0 in let unfold_fv (fv: fv) : Tac term = let ty = pack (Tv_FVar fv) in let fvn = flatten_name (inspect_fv fv) in let ty' = norm_term_env e [delta_only [fvn]] ty in match inspect ty' with | Tv_FVar fv' -> if flatten_name...
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.env", "FStar.Reflection.Types.typ", "Prims.bool", "FStar.Reflection.Types.binder", "FStar.Reflection.Types.comp", "FStar.Reflection.Types.fv", "FStar.InteractiveHelpers.ExploreTerm.unfold_until_arrow", "FStar.Reflection.Types.term", "FStar.Reflection.V1.Data.argv", "Prims.l...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val unfold_until_arrow : env -> typ -> Tac typ
[ "recursion" ]
FStar.InteractiveHelpers.ExploreTerm.unfold_until_arrow
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
e: FStar.Reflection.Types.env -> ty0: FStar.Reflection.Types.typ -> FStar.Tactics.Effect.Tac FStar.Reflection.Types.typ
{ "end_col": 7, "end_line": 251, "start_col": 2, "start_line": 207 }
FStar.Tactics.Effect.Tac
val comp_qualifier (c : comp) : Tac string
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let comp_qualifier (c : comp) : Tac string = match inspect_comp c with | C_Total _ -> "C_Total" | C_GTotal _ -> "C_GTotal" | C_Lemma _ _ _ -> "C_Lemma" | C_Eff _ _ _ _ _ -> "C_Eff"
val comp_qualifier (c : comp) : Tac string let comp_qualifier (c: comp) : Tac string =
true
null
false
match inspect_comp c with | C_Total _ -> "C_Total" | C_GTotal _ -> "C_GTotal" | C_Lemma _ _ _ -> "C_Lemma" | C_Eff _ _ _ _ _ -> "C_Eff"
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.comp", "FStar.Reflection.V1.Builtins.inspect_comp", "FStar.Reflection.Types.typ", "FStar.Reflection.Types.term", "FStar.Reflection.V1.Data.universes", "FStar.Reflection.Types.name", "Prims.list", "FStar.Reflection.V1.Data.argv", "Prims.string" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val comp_qualifier (c : comp) : Tac string
[]
FStar.InteractiveHelpers.ExploreTerm.comp_qualifier
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
c: FStar.Reflection.Types.comp -> FStar.Tactics.Effect.Tac Prims.string
{ "end_col": 30, "end_line": 35, "start_col": 2, "start_line": 31 }
Prims.Tot
val params_of_typ_or_comp (c: typ_or_comp) : list binder
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let params_of_typ_or_comp (c : typ_or_comp) : list binder = match c with | TC_Typ _ pl _ | TC_Comp _ pl _ -> pl
val params_of_typ_or_comp (c: typ_or_comp) : list binder let params_of_typ_or_comp (c: typ_or_comp) : list binder =
false
null
false
match c with | TC_Typ _ pl _ | TC_Comp _ pl _ -> pl
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[ "FStar.InteractiveHelpers.ExploreTerm.typ_or_comp", "FStar.Reflection.Types.typ", "Prims.list", "FStar.Reflection.Types.binder", "Prims.nat", "FStar.Reflection.Types.comp" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val params_of_typ_or_comp (c: typ_or_comp) : list binder
[]
FStar.InteractiveHelpers.ExploreTerm.params_of_typ_or_comp
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
c: FStar.InteractiveHelpers.ExploreTerm.typ_or_comp -> Prims.list FStar.Reflection.Types.binder
{ "end_col": 40, "end_line": 172, "start_col": 2, "start_line": 171 }
Prims.Tot
val get_comp_ret_type : comp -> Tot typ
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let get_comp_ret_type c = match inspect_comp c with | C_Total ret_ty | C_GTotal ret_ty | C_Eff _ _ ret_ty _ _ -> ret_ty | C_Lemma _ _ _ -> (`unit)
val get_comp_ret_type : comp -> Tot typ let get_comp_ret_type c =
false
null
false
match inspect_comp c with | C_Total ret_ty | C_GTotal ret_ty | C_Eff _ _ ret_ty _ _ -> ret_ty | C_Lemma _ _ _ -> (`unit)
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[ "FStar.Reflection.Types.comp", "FStar.Reflection.V1.Builtins.inspect_comp", "FStar.Reflection.Types.typ", "FStar.Reflection.V1.Data.universes", "FStar.Reflection.Types.name", "FStar.Reflection.Types.term", "Prims.list", "FStar.Reflection.V1.Data.argv" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val get_comp_ret_type : comp -> Tot typ
[]
FStar.InteractiveHelpers.ExploreTerm.get_comp_ret_type
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
c: FStar.Reflection.Types.comp -> FStar.Reflection.Types.typ
{ "end_col": 28, "end_line": 127, "start_col": 2, "start_line": 124 }
Prims.Tot
val effect_type_to_string : effect_type -> string
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let effect_type_to_string ety = match ety with | E_Total -> "E_Total" | E_GTotal -> "E_GTotal" | E_Lemma -> "E_Lemma" | E_PURE -> "E_PURE" | E_Pure -> "E_Pure" | E_Stack -> "E_Stack" | E_ST -> "E_ST" | E_Unknown -> "E_Unknown"
val effect_type_to_string : effect_type -> string let effect_type_to_string ety =
false
null
false
match ety with | E_Total -> "E_Total" | E_GTotal -> "E_GTotal" | E_Lemma -> "E_Lemma" | E_PURE -> "E_PURE" | E_Pure -> "E_Pure" | E_Stack -> "E_Stack" | E_ST -> "E_ST" | E_Unknown -> "E_Unknown"
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[ "FStar.InteractiveHelpers.ExploreTerm.effect_type", "Prims.string" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val effect_type_to_string : effect_type -> string
[]
FStar.InteractiveHelpers.ExploreTerm.effect_type_to_string
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
ety: FStar.InteractiveHelpers.ExploreTerm.effect_type -> Prims.string
{ "end_col": 28, "end_line": 54, "start_col": 2, "start_line": 46 }
FStar.Tactics.Effect.Tac
val get_type_info (e: env) (t: term) : Tac (option type_info)
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let get_type_info (e:env) (t:term) : Tac (option type_info) = match safe_tc e t with | None -> None | Some ty -> Some (get_type_info_from_type ty)
val get_type_info (e: env) (t: term) : Tac (option type_info) let get_type_info (e: env) (t: term) : Tac (option type_info) =
true
null
false
match safe_tc e t with | None -> None | Some ty -> Some (get_type_info_from_type ty)
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.env", "FStar.Reflection.Types.term", "FStar.Pervasives.Native.None", "FStar.InteractiveHelpers.ExploreTerm.type_info", "FStar.Pervasives.Native.option", "FStar.Pervasives.Native.Some", "FStar.InteractiveHelpers.ExploreTerm.get_type_info_from_type", "FStar.InteractiveHelpers.Exp...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val get_type_info (e: env) (t: term) : Tac (option type_info)
[]
FStar.InteractiveHelpers.ExploreTerm.get_type_info
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
e: FStar.Reflection.Types.env -> t: FStar.Reflection.Types.term -> FStar.Tactics.Effect.Tac (FStar.Pervasives.Native.option FStar.InteractiveHelpers.ExploreTerm.type_info)
{ "end_col": 48, "end_line": 113, "start_col": 2, "start_line": 111 }
FStar.Tactics.Effect.Tac
val inst_comp : env -> comp -> list term -> Tac comp
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let rec inst_comp e c tl = match tl with | [] -> c | t :: tl' -> let c' = try inst_comp_once e c t with | MetaAnalysis msg -> mfail ("inst_comp: error: " ^ msg) | err -> raise err in inst_comp e c' tl'
val inst_comp : env -> comp -> list term -> Tac comp let rec inst_comp e c tl =
true
null
false
match tl with | [] -> c | t :: tl' -> let c' = try inst_comp_once e c t with | MetaAnalysis msg -> mfail ("inst_comp: error: " ^ msg) | err -> raise err in inst_comp e c' tl'
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.env", "FStar.Reflection.Types.comp", "Prims.list", "FStar.Reflection.Types.term", "FStar.InteractiveHelpers.ExploreTerm.inst_comp", "FStar.Tactics.V1.Derived.try_with", "Prims.unit", "FStar.InteractiveHelpers.ExploreTerm.inst_comp_once", "Prims.exn", "Prims.string", "FSta...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val inst_comp : env -> comp -> list term -> Tac comp
[ "recursion" ]
FStar.InteractiveHelpers.ExploreTerm.inst_comp
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
e: FStar.Reflection.Types.env -> c: FStar.Reflection.Types.comp -> tl: Prims.list FStar.Reflection.Types.term -> FStar.Tactics.Effect.Tac FStar.Reflection.Types.comp
{ "end_col": 22, "end_line": 274, "start_col": 2, "start_line": 267 }
Prims.Tot
val effect_type_is_pure : effect_type -> Tot bool
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let effect_type_is_pure etype = match etype with | E_Total | E_GTotal | E_Lemma | E_PURE | E_Pure -> true | E_Stack | E_ST | E_Unknown -> false
val effect_type_is_pure : effect_type -> Tot bool let effect_type_is_pure etype =
false
null
false
match etype with | E_Total | E_GTotal | E_Lemma | E_PURE | E_Pure -> true | E_Stack | E_ST | E_Unknown -> false
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[ "FStar.InteractiveHelpers.ExploreTerm.effect_type", "Prims.bool" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val effect_type_is_pure : effect_type -> Tot bool
[]
FStar.InteractiveHelpers.ExploreTerm.effect_type_is_pure
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
etype: FStar.InteractiveHelpers.ExploreTerm.effect_type -> Prims.bool
{ "end_col": 39, "end_line": 71, "start_col": 2, "start_line": 69 }
Prims.Tot
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let convert_ctrl_flag (flag : ctrl_flag) = match flag with | Continue -> Continue | Skip -> Continue | Abort -> Abort
let convert_ctrl_flag (flag: ctrl_flag) =
false
null
false
match flag with | Continue -> Continue | Skip -> Continue | Abort -> Abort
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[ "FStar.Tactics.Types.ctrl_flag", "FStar.Tactics.Types.Continue", "FStar.Tactics.Types.Abort" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val convert_ctrl_flag : flag: FStar.Tactics.Types.ctrl_flag -> FStar.Tactics.Types.ctrl_flag
[]
FStar.InteractiveHelpers.ExploreTerm.convert_ctrl_flag
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
flag: FStar.Tactics.Types.ctrl_flag -> FStar.Tactics.Types.ctrl_flag
{ "end_col": 18, "end_line": 415, "start_col": 2, "start_line": 412 }
Prims.Tot
val num_unflushed_of_typ_or_comp (c: typ_or_comp) : nat
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let num_unflushed_of_typ_or_comp (c : typ_or_comp) : nat = match c with | TC_Typ _ _ n | TC_Comp _ _ n -> n
val num_unflushed_of_typ_or_comp (c: typ_or_comp) : nat let num_unflushed_of_typ_or_comp (c: typ_or_comp) : nat =
false
null
false
match c with | TC_Typ _ _ n | TC_Comp _ _ n -> n
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[ "total" ]
[ "FStar.InteractiveHelpers.ExploreTerm.typ_or_comp", "FStar.Reflection.Types.typ", "Prims.list", "FStar.Reflection.Types.binder", "Prims.nat", "FStar.Reflection.Types.comp" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
true
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val num_unflushed_of_typ_or_comp (c: typ_or_comp) : nat
[]
FStar.InteractiveHelpers.ExploreTerm.num_unflushed_of_typ_or_comp
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
c: FStar.InteractiveHelpers.ExploreTerm.typ_or_comp -> Prims.nat
{ "end_col": 37, "end_line": 176, "start_col": 0, "start_line": 175 }
FStar.Tactics.Effect.Tac
val abs_update_typ_or_comp : binder -> typ_or_comp -> env -> Tac typ_or_comp
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let abs_update_typ_or_comp (b:binder) (c : typ_or_comp) (e:env) : Tac typ_or_comp = match c with (*| TC_Typ v pl n -> _abs_update_typ b v pl e | TC_Comp v pl n -> (* Note that the computation is not necessarily pure, in which case we might * want to do something with the effect arguments (pre, post...) -...
val abs_update_typ_or_comp : binder -> typ_or_comp -> env -> Tac typ_or_comp let abs_update_typ_or_comp (b: binder) (c: typ_or_comp) (e: env) : Tac typ_or_comp =
true
null
false
match c with | TC_Typ v pl n -> TC_Typ v (b :: pl) (n + 1) | TC_Comp v pl n -> TC_Comp v (b :: pl) (n + 1)
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.binder", "FStar.InteractiveHelpers.ExploreTerm.typ_or_comp", "FStar.Reflection.Types.env", "FStar.Reflection.Types.typ", "Prims.list", "Prims.nat", "FStar.InteractiveHelpers.ExploreTerm.TC_Typ", "Prims.Cons", "Prims.op_Addition", "FStar.Reflection.Types.comp", "FStar.Inte...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val abs_update_typ_or_comp : binder -> typ_or_comp -> env -> Tac typ_or_comp
[]
FStar.InteractiveHelpers.ExploreTerm.abs_update_typ_or_comp
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
b: FStar.Reflection.Types.binder -> c: FStar.InteractiveHelpers.ExploreTerm.typ_or_comp -> e: FStar.Reflection.Types.env -> FStar.Tactics.Effect.Tac FStar.InteractiveHelpers.ExploreTerm.typ_or_comp
{ "end_col": 45, "end_line": 312, "start_col": 2, "start_line": 303 }
FStar.Tactics.Effect.Tac
val bind_expl (#a: Type) (x: a) (f1 f2: (a -> Tac (a & ctrl_flag))) : Tac (a & ctrl_flag)
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let bind_expl (#a : Type) (x : a) (f1 f2 : a -> Tac (a & ctrl_flag)) : Tac (a & ctrl_flag) = let x1, flag1 = f1 x in if flag1 = Continue then f2 x1 else x1, convert_ctrl_flag flag1
val bind_expl (#a: Type) (x: a) (f1 f2: (a -> Tac (a & ctrl_flag))) : Tac (a & ctrl_flag) let bind_expl (#a: Type) (x: a) (f1 f2: (a -> Tac (a & ctrl_flag))) : Tac (a & ctrl_flag) =
true
null
false
let x1, flag1 = f1 x in if flag1 = Continue then f2 x1 else x1, convert_ctrl_flag flag1
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Pervasives.Native.tuple2", "FStar.Tactics.Types.ctrl_flag", "Prims.op_Equality", "FStar.Tactics.Types.Continue", "Prims.bool", "FStar.Pervasives.Native.Mktuple2", "FStar.InteractiveHelpers.ExploreTerm.convert_ctrl_flag" ]
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val bind_expl (#a: Type) (x: a) (f1 f2: (a -> Tac (a & ctrl_flag))) : Tac (a & ctrl_flag)
[]
FStar.InteractiveHelpers.ExploreTerm.bind_expl
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
x: a -> f1: (_: a -> FStar.Tactics.Effect.Tac (a * FStar.Tactics.Types.ctrl_flag)) -> f2: (_: a -> FStar.Tactics.Effect.Tac (a * FStar.Tactics.Types.ctrl_flag)) -> FStar.Tactics.Effect.Tac (a * FStar.Tactics.Types.ctrl_flag)
{ "end_col": 34, "end_line": 438, "start_col": 92, "start_line": 434 }
FStar.Tactics.Effect.Tac
val abs_update_opt_typ_or_comp : binder -> option typ_or_comp -> env -> Tac (option typ_or_comp)
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let abs_update_opt_typ_or_comp b opt_c e = match opt_c with | None -> None | Some c -> try let c = abs_update_typ_or_comp b c e in Some c with | MetaAnalysis msg -> None | err -> raise err
val abs_update_opt_typ_or_comp : binder -> option typ_or_comp -> env -> Tac (option typ_or_comp) let abs_update_opt_typ_or_comp b opt_c e =
true
null
false
match opt_c with | None -> None | Some c -> try let c = abs_update_typ_or_comp b c e in Some c with | MetaAnalysis msg -> None | err -> raise err
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.binder", "FStar.Pervasives.Native.option", "FStar.InteractiveHelpers.ExploreTerm.typ_or_comp", "FStar.Reflection.Types.env", "FStar.Pervasives.Native.None", "FStar.Tactics.V1.Derived.try_with", "Prims.unit", "FStar.Pervasives.Native.Some", "FStar.InteractiveHelpers.ExploreTer...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val abs_update_opt_typ_or_comp : binder -> option typ_or_comp -> env -> Tac (option typ_or_comp)
[]
FStar.InteractiveHelpers.ExploreTerm.abs_update_opt_typ_or_comp
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
b: FStar.Reflection.Types.binder -> opt_c: FStar.Pervasives.Native.option FStar.InteractiveHelpers.ExploreTerm.typ_or_comp -> e: FStar.Reflection.Types.env -> FStar.Tactics.Effect.Tac (FStar.Pervasives.Native.option FStar.InteractiveHelpers.ExploreTerm.typ_or_comp)
{ "end_col": 27, "end_line": 324, "start_col": 2, "start_line": 317 }
FStar.Tactics.Effect.Tac
val typ_or_comp_to_string (tyc: typ_or_comp) : Tac string
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let typ_or_comp_to_string (tyc : typ_or_comp) : Tac string = match tyc with | TC_Typ v pl num_unflushed -> "TC_Typ (" ^ term_to_string v ^ ") " ^ list_to_string (fun b -> name_of_binder b) pl ^ " " ^ string_of_int num_unflushed | TC_Comp c pl num_unflushed -> "TC_Comp (" ^ acomp_to_string c ^ ") " ^ l...
val typ_or_comp_to_string (tyc: typ_or_comp) : Tac string let typ_or_comp_to_string (tyc: typ_or_comp) : Tac string =
true
null
false
match tyc with | TC_Typ v pl num_unflushed -> "TC_Typ (" ^ term_to_string v ^ ") " ^ list_to_string (fun b -> name_of_binder b) pl ^ " " ^ string_of_int num_unflushed | TC_Comp c pl num_unflushed -> "TC_Comp (" ^ acomp_to_string c ^ ") " ^ list_to_string (fun b -> name_of_binder b) pl ^ " " ^ string_of_int ...
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.InteractiveHelpers.ExploreTerm.typ_or_comp", "FStar.Reflection.Types.typ", "Prims.list", "FStar.Reflection.Types.binder", "Prims.nat", "Prims.op_Hat", "Prims.string", "Prims.string_of_int", "FStar.InteractiveHelpers.Base.list_to_string", "FStar.Tactics.V1.Derived.name_of_binder", "FStar.T...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val typ_or_comp_to_string (tyc: typ_or_comp) : Tac string
[]
FStar.InteractiveHelpers.ExploreTerm.typ_or_comp_to_string
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
tyc: FStar.InteractiveHelpers.ExploreTerm.typ_or_comp -> FStar.Tactics.Effect.Tac Prims.string
{ "end_col": 37, "end_line": 167, "start_col": 2, "start_line": 161 }
FStar.Tactics.Effect.Tac
val explore_pattern : dbg : bool -> dfs : bool (* depth-first search *) -> #a : Type0 -> f : explorer a -> x : a -> ge:genv -> pat:pattern -> Tac (genv & a & ctrl_flag)
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let rec explore_term dbg dfs #a f x ge0 pl0 c0 t0 = print_dbg dbg ("[> explore_term: " ^ term_construct t0 ^ ":\n" ^ term_to_string t0); let tv0 = inspect t0 in let x0, flag = f x ge0 pl0 c0 tv0 in let pl1 = (ge0, tv0) :: pl0 in if flag = Continue then begin match tv0 with | Tv_Var _ | Tv_BVar _ | Tv_...
val explore_pattern : dbg : bool -> dfs : bool (* depth-first search *) -> #a : Type0 -> f : explorer a -> x : a -> ge:genv -> pat:pattern -> Tac (genv & a & ctrl_flag) let rec explore_pattern dbg dfs #a f x ge0 pat =
true
null
false
print_dbg dbg ("[> explore_pattern:"); match pat with | Pat_Constant _ -> ge0, x, Continue | Pat_Cons fv us patterns -> let explore_pat ge_x_flag pat = let ge0, x, flag = ge_x_flag in let pat1, _ = pat in if flag = Continue then explore_pattern dbg dfs #a f x ge0 pat1 else ge0, x, flag in fold_left ex...
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "Prims.bool", "FStar.InteractiveHelpers.ExploreTerm.explorer", "FStar.InteractiveHelpers.Base.genv", "FStar.Reflection.V1.Data.pattern", "FStar.Reflection.V1.Data.vconst", "FStar.Pervasives.Native.Mktuple3", "FStar.Tactics.Types.ctrl_flag", "FStar.Tactics.Types.Continue", "FStar.Pervasives.Native.tu...
[ "explore_term", "explore_pattern" ]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val explore_pattern : dbg : bool -> dfs : bool (* depth-first search *) -> #a : Type0 -> f : explorer a -> x : a -> ge:genv -> pat:pattern -> Tac (genv & a & ctrl_flag)
[ "mutual recursion" ]
FStar.InteractiveHelpers.ExploreTerm.explore_pattern
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
dbg: Prims.bool -> dfs: Prims.bool -> f: FStar.InteractiveHelpers.ExploreTerm.explorer a -> x: a -> ge: FStar.InteractiveHelpers.Base.genv -> pat: FStar.Reflection.V1.Data.pattern -> FStar.Tactics.Effect.Tac ((FStar.InteractiveHelpers.Base.genv * a) * FStar.Tactics.Types.ctrl_flag)
{ "end_col": 38, "end_line": 567, "start_col": 2, "start_line": 550 }
FStar.Tactics.Effect.Tac
val _flush_typ_or_comp_comp (dbg: bool) (e: env) (rem: list binder) (inst: list ((bv & typ) & term)) (c: comp) : Tac comp
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let rec _flush_typ_or_comp_comp (dbg : bool) (e:env) (rem : list binder) (inst : list ((bv & typ) & term)) (c:comp) : Tac comp = let flush c inst = let inst = List.rev inst in apply_subst_in_comp e c inst in match rem with | [] -> (* No more binders: flush *) flus...
val _flush_typ_or_comp_comp (dbg: bool) (e: env) (rem: list binder) (inst: list ((bv & typ) & term)) (c: comp) : Tac comp let rec _flush_typ_or_comp_comp (dbg: bool) (e: env) (rem: list binder) (inst: list ((bv & typ) & term)) (c: comp) : Tac comp =
true
null
false
let flush c inst = let inst = List.rev inst in apply_subst_in_comp e c inst in match rem with | [] -> flush c inst | b :: rem' -> let ty = get_comp_ret_type c in let ty, inst' = if Tv_Arrow? (inspect ty) then ty, inst else get_comp_ret_type (flush c inst), [] in match inspect ty with | Tv_Arrow b' c' ...
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "Prims.bool", "FStar.Reflection.Types.env", "Prims.list", "FStar.Reflection.Types.binder", "FStar.Pervasives.Native.tuple2", "FStar.Reflection.Types.bv", "FStar.Reflection.Types.typ", "FStar.Reflection.Types.term", "FStar.Reflection.Types.comp", "FStar.InteractiveHelpers.ExploreTerm._flush_typ_or_...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val _flush_typ_or_comp_comp (dbg: bool) (e: env) (rem: list binder) (inst: list ((bv & typ) & term)) (c: comp) : Tac comp
[ "recursion" ]
FStar.InteractiveHelpers.ExploreTerm._flush_typ_or_comp_comp
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
dbg: Prims.bool -> e: FStar.Reflection.Types.env -> rem: Prims.list FStar.Reflection.Types.binder -> inst: Prims.list ((FStar.Reflection.Types.bv * FStar.Reflection.Types.typ) * FStar.Reflection.Types.term) -> c: FStar.Reflection.Types.comp -> FStar.Tactics.Effect.Tac FStar.Reflec...
{ "end_col": 86, "end_line": 359, "start_col": 53, "start_line": 337 }
FStar.Tactics.Effect.Tac
val safe_typ_or_comp : bool -> env -> term -> Tac (opt:option typ_or_comp{Some? opt ==> TC_Comp? (Some?.v opt)})
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let safe_typ_or_comp dbg e t = match safe_tcc e t with | None -> print_dbg dbg ("[> safe_typ_or_comp:" ^ "\n-term: " ^ term_to_string t ^ "\n-comp: None"); None | Some c -> print_dbg dbg ("[> safe_typ_or_comp:" ^ "\n-term: " ^ term_to_string t ^...
val safe_typ_or_comp : bool -> env -> term -> Tac (opt:option typ_or_comp{Some? opt ==> TC_Comp? (Some?.v opt)}) let safe_typ_or_comp dbg e t =
true
null
false
match safe_tcc e t with | None -> print_dbg dbg ("[> safe_typ_or_comp:" ^ "\n-term: " ^ term_to_string t ^ "\n-comp: None"); None | Some c -> print_dbg dbg ("[> safe_typ_or_comp:" ^ "\n-term: " ^ term_to_string t ^ "\n-comp: " ^ acomp_to_string c); Some (TC_Comp c [] 0)
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "Prims.bool", "FStar.Reflection.Types.env", "FStar.Reflection.Types.term", "FStar.Pervasives.Native.None", "FStar.InteractiveHelpers.ExploreTerm.typ_or_comp", "FStar.Pervasives.Native.option", "Prims.l_imp", "Prims.b2t", "FStar.Pervasives.Native.uu___is_Some", "FStar.InteractiveHelpers.ExploreTerm...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val safe_typ_or_comp : bool -> env -> term -> Tac (opt:option typ_or_comp{Some? opt ==> TC_Comp? (Some?.v opt)})
[]
FStar.InteractiveHelpers.ExploreTerm.safe_typ_or_comp
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
dbg: Prims.bool -> e: FStar.Reflection.Types.env -> t: FStar.Reflection.Types.term -> FStar.Tactics.Effect.Tac (opt: FStar.Pervasives.Native.option FStar.InteractiveHelpers.ExploreTerm.typ_or_comp {Some? opt ==> TC_Comp? (Some?.v opt)})
{ "end_col": 25, "end_line": 193, "start_col": 2, "start_line": 183 }
FStar.Tactics.Effect.Tac
val free_in : term -> Tac (list bv)
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let free_in t = let same_name (bv1 bv2 : bv) : Tac bool = name_of_bv bv1 = name_of_bv bv2 in let update_free (fl:list bv) (ge:genv) (pl:list (genv & term_view)) (c:option typ_or_comp) (tv:term_view) : Tac (list bv & ctrl_flag) = match tv with | Tv_Var bv | Tv_BVar bv -> (* ...
val free_in : term -> Tac (list bv) let free_in t =
true
null
false
let same_name (bv1 bv2: bv) : Tac bool = name_of_bv bv1 = name_of_bv bv2 in let update_free (fl: list bv) (ge: genv) (pl: list (genv & term_view)) (c: option typ_or_comp) (tv: term_view) : Tac (list bv & ctrl_flag) = match tv with | Tv_Var bv | Tv_BVar bv -> (match genv_get_f...
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "FStar.Reflection.Types.term", "FStar.List.Tot.Base.rev", "FStar.Reflection.Types.bv", "Prims.list", "FStar.Pervasives.Native.fst", "FStar.Tactics.Types.ctrl_flag", "FStar.Pervasives.Native.tuple2", "FStar.InteractiveHelpers.ExploreTerm.explore_term", "Prims.Nil", "FStar.InteractiveHelpers.Base.ge...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val free_in : term -> Tac (list bv)
[]
FStar.InteractiveHelpers.ExploreTerm.free_in
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
t: FStar.Reflection.Types.term -> FStar.Tactics.Effect.Tac (Prims.list FStar.Reflection.Types.bv)
{ "end_col": 75, "end_line": 593, "start_col": 15, "start_line": 572 }
FStar.Tactics.Effect.Tac
val safe_arg_typ_or_comp : bool -> env -> term -> Tac (opt:option typ_or_comp{Some? opt ==> TC_Typ? (Some?.v opt)})
[ { "abbrev": false, "full_module": "FStar.InteractiveHelpers.Base", "short_module": null }, { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "FStar.Tactics", "short_module": null }, { "abbrev": false, "ful...
false
let safe_arg_typ_or_comp dbg e hd = print_dbg dbg ("safe_arg_typ_or_comp: " ^ term_to_string hd); match safe_tc e hd with | None -> None | Some ty -> print_dbg dbg ("hd type: " ^ term_to_string ty); let ty = if Tv_Arrow? (inspect ty) then begin print_dbg dbg "no need to unfold the ...
val safe_arg_typ_or_comp : bool -> env -> term -> Tac (opt:option typ_or_comp{Some? opt ==> TC_Typ? (Some?.v opt)}) let safe_arg_typ_or_comp dbg e hd =
true
null
false
print_dbg dbg ("safe_arg_typ_or_comp: " ^ term_to_string hd); match safe_tc e hd with | None -> None | Some ty -> print_dbg dbg ("hd type: " ^ term_to_string ty); let ty = if Tv_Arrow? (inspect ty) then (print_dbg dbg "no need to unfold the type"; ty) else (print_dbg dbg "need to unf...
{ "checked_file": "FStar.InteractiveHelpers.ExploreTerm.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Tactics.fst.checked", "FStar.Reflection.Const.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked", "FStar.List.Tot...
[]
[ "Prims.bool", "FStar.Reflection.Types.env", "FStar.Reflection.Types.term", "FStar.Pervasives.Native.None", "FStar.InteractiveHelpers.ExploreTerm.typ_or_comp", "FStar.Pervasives.Native.option", "Prims.l_imp", "Prims.b2t", "FStar.Pervasives.Native.uu___is_Some", "FStar.InteractiveHelpers.ExploreTerm...
[]
module FStar.InteractiveHelpers.ExploreTerm open FStar.List open FStar.Tactics open FStar.Mul open FStar.InteractiveHelpers.Base #push-options "--z3rlimit 15 --fuel 0 --ifuel 1" (*** Types and effects *) /// Define utilities to handle and carry types and effects (**** Type analysis *) /// Retrieve and deconstruct a...
false
false
FStar.InteractiveHelpers.ExploreTerm.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val safe_arg_typ_or_comp : bool -> env -> term -> Tac (opt:option typ_or_comp{Some? opt ==> TC_Typ? (Some?.v opt)})
[]
FStar.InteractiveHelpers.ExploreTerm.safe_arg_typ_or_comp
{ "file_name": "ulib/experimental/FStar.InteractiveHelpers.ExploreTerm.fst", "git_rev": "f4cbb7a38d67eeb13fbdb2f4fb8a44a65cbcdc1f", "git_url": "https://github.com/FStarLang/FStar.git", "project_name": "FStar" }
dbg: Prims.bool -> e: FStar.Reflection.Types.env -> hd: FStar.Reflection.Types.term -> FStar.Tactics.Effect.Tac (opt: FStar.Pervasives.Native.option FStar.InteractiveHelpers.ExploreTerm.typ_or_comp {Some? opt ==> TC_Typ? (Some?.v opt)})
{ "end_col": 15, "end_line": 404, "start_col": 2, "start_line": 383 }
Prims.Tot
val backend_flag : EverParse3d.Actions.Base.backend_flag_t
[ { "abbrev": false, "full_module": "EverParse3d.Actions", "short_module": null }, { "abbrev": false, "full_module": "EverParse3d.Actions", "short_module": null }, { "abbrev": false, "full_module": "FStar.Pervasives", "short_module": null }, { "abbrev": false, "...
false
let backend_flag = EverParse3d.Actions.Base.BackendFlagExtern
val backend_flag : EverParse3d.Actions.Base.backend_flag_t let backend_flag =
false
null
false
EverParse3d.Actions.Base.BackendFlagExtern
{ "checked_file": "EverParse3d.Actions.BackendFlag.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.fsti.checked", "EverParse3d.Actions.Base.fsti.checked" ], "interface_file": true, "source_file": "EverParse3d.Actions.BackendFlag.fst" }
[ "total" ]
[ "EverParse3d.Actions.Base.BackendFlagExtern" ]
[]
false
true
EverParse3d.Actions.BackendFlag.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 2, "max_fuel": 0, "max_ifuel": 2, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val backend_flag : EverParse3d.Actions.Base.backend_flag_t
[]
EverParse3d.Actions.BackendFlag.backend_flag
{ "file_name": "src/3d/prelude/extern/EverParse3d.Actions.BackendFlag.fst", "git_rev": "446a08ce38df905547cf20f28c43776b22b8087a", "git_url": "https://github.com/project-everest/everparse.git", "project_name": "everparse" }
EverParse3d.Actions.Base.backend_flag_t
{ "end_col": 61, "end_line": 2, "start_col": 19, "start_line": 2 }
Prims.Tot
val print (name: string) (oprs: list instr_print_operand) : instr_print
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def.Types_s", "short_module": null }, { "abbrev": false, "full_module...
false
let print (name:string) (oprs:list instr_print_operand) : instr_print = Print name POpcode oprs
val print (name: string) (oprs: list instr_print_operand) : instr_print let print (name: string) (oprs: list instr_print_operand) : instr_print =
false
null
false
Print name POpcode oprs
{ "checked_file": "Vale.X64.Instruction_s.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.X64.Instruction_s.fst" }
[ "total" ]
[ "Prims.string", "Prims.list", "Vale.X64.Instruction_s.instr_print_operand", "Vale.X64.Instruction_s.Print", "Vale.X64.Instruction_s.POpcode", "Vale.X64.Instruction_s.instr_print" ]
[]
module Vale.X64.Instruction_s open FStar.Mul // only trusted specification files should friend this module [@instr_attr] let rec instr_print_t_args (args:list instr_operand) : Type0 = match args with | [] -> instr_print | (IOpEx i)::args -> arrow (instr_operand_t i) (instr_print_t_args args) | (IOpIm _)::args ...
false
true
Vale.X64.Instruction_s.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val print (name: string) (oprs: list instr_print_operand) : instr_print
[]
Vale.X64.Instruction_s.print
{ "file_name": "vale/specs/hardware/Vale.X64.Instruction_s.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
name: Prims.string -> oprs: Prims.list Vale.X64.Instruction_s.instr_print_operand -> Vale.X64.Instruction_s.instr_print
{ "end_col": 95, "end_line": 72, "start_col": 72, "start_line": 72 }
Prims.Tot
val print_s (name: string) (oprs: list instr_print_operand) : instr_print
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def.Types_s", "short_module": null }, { "abbrev": false, "full_module...
false
let print_s (name:string) (oprs:list instr_print_operand) : instr_print = Print name PSuffix oprs
val print_s (name: string) (oprs: list instr_print_operand) : instr_print let print_s (name: string) (oprs: list instr_print_operand) : instr_print =
false
null
false
Print name PSuffix oprs
{ "checked_file": "Vale.X64.Instruction_s.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.X64.Instruction_s.fst" }
[ "total" ]
[ "Prims.string", "Prims.list", "Vale.X64.Instruction_s.instr_print_operand", "Vale.X64.Instruction_s.Print", "Vale.X64.Instruction_s.PSuffix", "Vale.X64.Instruction_s.instr_print" ]
[]
module Vale.X64.Instruction_s open FStar.Mul // only trusted specification files should friend this module [@instr_attr] let rec instr_print_t_args (args:list instr_operand) : Type0 = match args with | [] -> instr_print | (IOpEx i)::args -> arrow (instr_operand_t i) (instr_print_t_args args) | (IOpIm _)::args ...
false
true
Vale.X64.Instruction_s.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val print_s (name: string) (oprs: list instr_print_operand) : instr_print
[]
Vale.X64.Instruction_s.print_s
{ "file_name": "vale/specs/hardware/Vale.X64.Instruction_s.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
name: Prims.string -> oprs: Prims.list Vale.X64.Instruction_s.instr_print_operand -> Vale.X64.Instruction_s.instr_print
{ "end_col": 97, "end_line": 73, "start_col": 74, "start_line": 73 }
Prims.Tot
val instr_eval (#outs:list instr_out) (#args:list instr_operand) (#havoc_flags:flag_havoc) (i:instr_t outs args havoc_flags) // : normal (instr_eval_t outs args) : norm [zeta; iota; delta_attr [`%instr_attr]] (instr_eval_t outs args)
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def.Types_s", "short_module": null }, { "abbrev": false, "full_module...
false
let instr_eval #_ #_ #_ ins = ins.i_eval
val instr_eval (#outs:list instr_out) (#args:list instr_operand) (#havoc_flags:flag_havoc) (i:instr_t outs args havoc_flags) // : normal (instr_eval_t outs args) : norm [zeta; iota; delta_attr [`%instr_attr]] (instr_eval_t outs args) let instr_eval #_ #_ #_ ins =
false
null
false
ins.i_eval
{ "checked_file": "Vale.X64.Instruction_s.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.X64.Instruction_s.fst" }
[ "total" ]
[ "Prims.list", "Vale.X64.Instruction_s.instr_out", "Vale.X64.Instruction_s.instr_operand", "Vale.X64.Instruction_s.flag_havoc", "Vale.X64.Instruction_s.instr_t", "Vale.X64.Instruction_s.__proj__Mkinstr_t__item__i_eval", "FStar.Pervasives.norm", "Prims.Cons", "FStar.Pervasives.norm_step", "FStar.Per...
[]
module Vale.X64.Instruction_s open FStar.Mul // only trusted specification files should friend this module [@instr_attr] let rec instr_print_t_args (args:list instr_operand) : Type0 = match args with | [] -> instr_print | (IOpEx i)::args -> arrow (instr_operand_t i) (instr_print_t_args args) | (IOpIm _)::args ...
false
false
Vale.X64.Instruction_s.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val instr_eval (#outs:list instr_out) (#args:list instr_operand) (#havoc_flags:flag_havoc) (i:instr_t outs args havoc_flags) // : normal (instr_eval_t outs args) : norm [zeta; iota; delta_attr [`%instr_attr]] (instr_eval_t outs args)
[]
Vale.X64.Instruction_s.instr_eval
{ "file_name": "vale/specs/hardware/Vale.X64.Instruction_s.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
i: Vale.X64.Instruction_s.instr_t outs args havoc_flags -> FStar.Pervasives.norm [ FStar.Pervasives.zeta; FStar.Pervasives.iota; FStar.Pervasives.delta_attr ["Vale.X64.Instruction_s.instr_attr"] ] (Vale.X64.Instruction_s.instr_eval_t outs args)
{ "end_col": 40, "end_line": 25, "start_col": 30, "start_line": 25 }
Prims.Tot
val instr_printer (#outs:list instr_out) (#args:list instr_operand) (#havoc_flags:flag_havoc) (i:instr_t outs args havoc_flags) (oprs:normal (instr_operands_t outs args)) : instr_print
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def.Types_s", "short_module": null }, { "abbrev": false, "full_module...
false
let instr_printer #outs #args #_ ins oprs = instr_printer_outs outs args ins.i_printer oprs
val instr_printer (#outs:list instr_out) (#args:list instr_operand) (#havoc_flags:flag_havoc) (i:instr_t outs args havoc_flags) (oprs:normal (instr_operands_t outs args)) : instr_print let instr_printer #outs #args #_ ins oprs =
false
null
false
instr_printer_outs outs args ins.i_printer oprs
{ "checked_file": "Vale.X64.Instruction_s.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.X64.Instruction_s.fst" }
[ "total" ]
[ "Prims.list", "Vale.X64.Instruction_s.instr_out", "Vale.X64.Instruction_s.instr_operand", "Vale.X64.Instruction_s.flag_havoc", "Vale.X64.Instruction_s.instr_t", "Vale.X64.Instruction_s.normal", "Vale.X64.Instruction_s.instr_operands_t", "Vale.X64.Instruction_s.instr_printer_outs", "Vale.X64.Instruct...
[]
module Vale.X64.Instruction_s open FStar.Mul // only trusted specification files should friend this module [@instr_attr] let rec instr_print_t_args (args:list instr_operand) : Type0 = match args with | [] -> instr_print | (IOpEx i)::args -> arrow (instr_operand_t i) (instr_print_t_args args) | (IOpIm _)::args ...
false
false
Vale.X64.Instruction_s.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val instr_printer (#outs:list instr_out) (#args:list instr_operand) (#havoc_flags:flag_havoc) (i:instr_t outs args havoc_flags) (oprs:normal (instr_operands_t outs args)) : instr_print
[]
Vale.X64.Instruction_s.instr_printer
{ "file_name": "vale/specs/hardware/Vale.X64.Instruction_s.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
i: Vale.X64.Instruction_s.instr_t outs args havoc_flags -> oprs: Vale.X64.Instruction_s.normal (Vale.X64.Instruction_s.instr_operands_t outs args) -> Vale.X64.Instruction_s.instr_print
{ "end_col": 49, "end_line": 63, "start_col": 2, "start_line": 63 }
Prims.Tot
val make_ins (#outs: list instr_out) (#args: list instr_operand) (#havoc_flags: flag_havoc) (#f: normal (instr_eval_t outs args)) (print: normal (instr_print_t outs args)) : instr_dep outs args havoc_flags f
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def.Types_s", "short_module": null }, { "abbrev": false, "full_module...
false
let make_ins (#outs:list instr_out) (#args:list instr_operand) (#havoc_flags:flag_havoc) (#f:normal (instr_eval_t outs args)) (print:normal (instr_print_t outs args)) : instr_dep outs args havoc_flags f = {i_printer = print; i_eval = f}
val make_ins (#outs: list instr_out) (#args: list instr_operand) (#havoc_flags: flag_havoc) (#f: normal (instr_eval_t outs args)) (print: normal (instr_print_t outs args)) : instr_dep outs args havoc_flags f let make_ins (#outs: list instr_out) (#args: list instr_operand) ...
false
null
false
{ i_printer = print; i_eval = f }
{ "checked_file": "Vale.X64.Instruction_s.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.X64.Instruction_s.fst" }
[ "total" ]
[ "Prims.list", "Vale.X64.Instruction_s.instr_out", "Vale.X64.Instruction_s.instr_operand", "Vale.X64.Instruction_s.flag_havoc", "Vale.X64.Instruction_s.normal", "Vale.X64.Instruction_s.instr_eval_t", "Vale.X64.Instruction_s.instr_print_t", "Vale.X64.Instruction_s.Mkinstr_t", "Vale.X64.Instruction_s.i...
[]
module Vale.X64.Instruction_s open FStar.Mul // only trusted specification files should friend this module [@instr_attr] let rec instr_print_t_args (args:list instr_operand) : Type0 = match args with | [] -> instr_print | (IOpEx i)::args -> arrow (instr_operand_t i) (instr_print_t_args args) | (IOpIm _)::args ...
false
false
Vale.X64.Instruction_s.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val make_ins (#outs: list instr_out) (#args: list instr_operand) (#havoc_flags: flag_havoc) (#f: normal (instr_eval_t outs args)) (print: normal (instr_print_t outs args)) : instr_dep outs args havoc_flags f
[]
Vale.X64.Instruction_s.make_ins
{ "file_name": "vale/specs/hardware/Vale.X64.Instruction_s.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
print: Vale.X64.Instruction_s.normal (Vale.X64.Instruction_s.instr_print_t outs args) -> Vale.X64.Instruction_s.instr_dep outs args havoc_flags f
{ "end_col": 32, "end_line": 70, "start_col": 3, "start_line": 70 }
Prims.Tot
val instr_print_t (outs: list instr_out) (args: list instr_operand) : Type0
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def.Types_s", "short_module": null }, { "abbrev": false, "full_module...
false
let rec instr_print_t (outs:list instr_out) (args:list instr_operand) : Type0 = match outs with | [] -> instr_print_t_args args | (_, IOpEx i)::outs -> arrow (instr_operand_t i) (instr_print_t outs args) | (_, IOpIm _)::outs -> instr_print_t outs args
val instr_print_t (outs: list instr_out) (args: list instr_operand) : Type0 let rec instr_print_t (outs: list instr_out) (args: list instr_operand) : Type0 =
false
null
false
match outs with | [] -> instr_print_t_args args | (_, IOpEx i) :: outs -> arrow (instr_operand_t i) (instr_print_t outs args) | (_, IOpIm _) :: outs -> instr_print_t outs args
{ "checked_file": "Vale.X64.Instruction_s.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.X64.Instruction_s.fst" }
[ "total" ]
[ "Prims.list", "Vale.X64.Instruction_s.instr_out", "Vale.X64.Instruction_s.instr_operand", "Vale.X64.Instruction_s.instr_print_t_args", "Vale.X64.Instruction_s.instr_operand_inout", "Vale.X64.Instruction_s.instr_operand_explicit", "Vale.X64.Instruction_s.arrow", "Vale.X64.Instruction_s.instr_operand_t"...
[]
module Vale.X64.Instruction_s open FStar.Mul // only trusted specification files should friend this module [@instr_attr] let rec instr_print_t_args (args:list instr_operand) : Type0 = match args with | [] -> instr_print | (IOpEx i)::args -> arrow (instr_operand_t i) (instr_print_t_args args) | (IOpIm _)::args ...
false
true
Vale.X64.Instruction_s.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val instr_print_t (outs: list instr_out) (args: list instr_operand) : Type0
[ "recursion" ]
Vale.X64.Instruction_s.instr_print_t
{ "file_name": "vale/specs/hardware/Vale.X64.Instruction_s.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
outs: Prims.list Vale.X64.Instruction_s.instr_out -> args: Prims.list Vale.X64.Instruction_s.instr_operand -> Type0
{ "end_col": 49, "end_line": 17, "start_col": 2, "start_line": 14 }
Prims.Tot
val instr_print_t_args (args: list instr_operand) : Type0
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def.Types_s", "short_module": null }, { "abbrev": false, "full_module...
false
let rec instr_print_t_args (args:list instr_operand) : Type0 = match args with | [] -> instr_print | (IOpEx i)::args -> arrow (instr_operand_t i) (instr_print_t_args args) | (IOpIm _)::args -> instr_print_t_args args
val instr_print_t_args (args: list instr_operand) : Type0 let rec instr_print_t_args (args: list instr_operand) : Type0 =
false
null
false
match args with | [] -> instr_print | IOpEx i :: args -> arrow (instr_operand_t i) (instr_print_t_args args) | IOpIm _ :: args -> instr_print_t_args args
{ "checked_file": "Vale.X64.Instruction_s.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.X64.Instruction_s.fst" }
[ "total" ]
[ "Prims.list", "Vale.X64.Instruction_s.instr_operand", "Vale.X64.Instruction_s.instr_print", "Vale.X64.Instruction_s.instr_operand_explicit", "Vale.X64.Instruction_s.arrow", "Vale.X64.Instruction_s.instr_operand_t", "Vale.X64.Instruction_s.instr_print_t_args", "Vale.X64.Instruction_s.instr_operand_impl...
[]
module Vale.X64.Instruction_s open FStar.Mul // only trusted specification files should friend this module [@instr_attr]
false
true
Vale.X64.Instruction_s.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val instr_print_t_args (args: list instr_operand) : Type0
[ "recursion" ]
Vale.X64.Instruction_s.instr_print_t_args
{ "file_name": "vale/specs/hardware/Vale.X64.Instruction_s.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
args: Prims.list Vale.X64.Instruction_s.instr_operand -> Type0
{ "end_col": 46, "end_line": 10, "start_col": 2, "start_line": 7 }
Prims.Tot
val instr_printer_args (args: list instr_operand) (f: instr_print_t_args args) (oprs: instr_operands_t_args args) : instr_print
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def.Types_s", "short_module": null }, { "abbrev": false, "full_module...
false
let rec instr_printer_args (args:list instr_operand) (f:instr_print_t_args args) (oprs:instr_operands_t_args args) : instr_print = match args with | [] -> f | i::args -> ( match i with | IOpEx i -> // REVIEW: triggers F* -> OCaml bug: let f:arrow (instr_operand_t i) (instr_print...
val instr_printer_args (args: list instr_operand) (f: instr_print_t_args args) (oprs: instr_operands_t_args args) : instr_print let rec instr_printer_args (args: list instr_operand) (f: instr_print_t_args args) (oprs: instr_operands_t_args args) : instr_print =
false
null
false
match args with | [] -> f | i :: args -> (match i with | IOpEx i -> let o, oprs = coerce oprs in instr_printer_args args (coerce #(arrow (instr_operand_t i) (instr_print_t_args args)) #(instr_print_t_args ((IOpEx i) :: args)) f o) oprs | IOpIm _ ...
{ "checked_file": "Vale.X64.Instruction_s.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.X64.Instruction_s.fst" }
[ "total" ]
[ "Prims.list", "Vale.X64.Instruction_s.instr_operand", "Vale.X64.Instruction_s.instr_print_t_args", "Vale.X64.Instruction_s.instr_operands_t_args", "Vale.X64.Instruction_s.instr_operand_explicit", "Vale.X64.Instruction_s.instr_operand_t", "Vale.X64.Instruction_s.instr_printer_args", "Vale.X64.Instructi...
[]
module Vale.X64.Instruction_s open FStar.Mul // only trusted specification files should friend this module [@instr_attr] let rec instr_print_t_args (args:list instr_operand) : Type0 = match args with | [] -> instr_print | (IOpEx i)::args -> arrow (instr_operand_t i) (instr_print_t_args args) | (IOpIm _)::args ...
false
false
Vale.X64.Instruction_s.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val instr_printer_args (args: list instr_operand) (f: instr_print_t_args args) (oprs: instr_operands_t_args args) : instr_print
[ "recursion" ]
Vale.X64.Instruction_s.instr_printer_args
{ "file_name": "vale/specs/hardware/Vale.X64.Instruction_s.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
args: Prims.list Vale.X64.Instruction_s.instr_operand -> f: Vale.X64.Instruction_s.instr_print_t_args args -> oprs: Vale.X64.Instruction_s.instr_operands_t_args args -> Vale.X64.Instruction_s.instr_print
{ "end_col": 5, "end_line": 42, "start_col": 2, "start_line": 31 }
Prims.Tot
val instr_printer_outs (outs: list instr_out) (args: list instr_operand) (f: instr_print_t outs args) (oprs: instr_operands_t outs args) : instr_print
[ { "abbrev": false, "full_module": "FStar.Mul", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Machine_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.Def.Types_s", "short_module": null }, { "abbrev": false, "full_module...
false
let rec instr_printer_outs (outs:list instr_out) (args:list instr_operand) (f:instr_print_t outs args) (oprs:instr_operands_t outs args) : instr_print = match outs with | [] -> instr_printer_args args f oprs // | (_, i)::outs -> | (b, i)::outs -> ( match i with | IOpEx i -> // ...
val instr_printer_outs (outs: list instr_out) (args: list instr_operand) (f: instr_print_t outs args) (oprs: instr_operands_t outs args) : instr_print let rec instr_printer_outs (outs: list instr_out) (args: list instr_operand) (f: instr_print_t outs args) (oprs: inst...
false
null
false
match outs with | [] -> instr_printer_args args f oprs | (b, i) :: outs -> (match i with | IOpEx i -> let o, oprs = coerce oprs in instr_printer_outs outs args (coerce #(arrow (instr_operand_t i) (instr_print_t outs args)) #(instr_print_t ((b, (IOpEx i)) :: outs) args) ...
{ "checked_file": "Vale.X64.Instruction_s.fst.checked", "dependencies": [ "prims.fst.checked", "FStar.Pervasives.Native.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Mul.fst.checked" ], "interface_file": true, "source_file": "Vale.X64.Instruction_s.fst" }
[ "total" ]
[ "Prims.list", "Vale.X64.Instruction_s.instr_out", "Vale.X64.Instruction_s.instr_operand", "Vale.X64.Instruction_s.instr_print_t", "Vale.X64.Instruction_s.instr_operands_t", "Vale.X64.Instruction_s.instr_printer_args", "Vale.X64.Instruction_s.instr_operand_inout", "Vale.X64.Instruction_s.instr_operand_...
[]
module Vale.X64.Instruction_s open FStar.Mul // only trusted specification files should friend this module [@instr_attr] let rec instr_print_t_args (args:list instr_operand) : Type0 = match args with | [] -> instr_print | (IOpEx i)::args -> arrow (instr_operand_t i) (instr_print_t_args args) | (IOpIm _)::args ...
false
false
Vale.X64.Instruction_s.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val instr_printer_outs (outs: list instr_out) (args: list instr_operand) (f: instr_print_t outs args) (oprs: instr_operands_t outs args) : instr_print
[ "recursion" ]
Vale.X64.Instruction_s.instr_printer_outs
{ "file_name": "vale/specs/hardware/Vale.X64.Instruction_s.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
outs: Prims.list Vale.X64.Instruction_s.instr_out -> args: Prims.list Vale.X64.Instruction_s.instr_operand -> f: Vale.X64.Instruction_s.instr_print_t outs args -> oprs: Vale.X64.Instruction_s.instr_operands_t outs args -> Vale.X64.Instruction_s.instr_print
{ "end_col": 5, "end_line": 60, "start_col": 2, "start_line": 48 }
Prims.Tot
val va_wp_Gctr_blocks128 (alg: algorithm) (in_b out_b: buffer128) (key: (seq nat32)) (round_keys: (seq quad32)) (keys_b: buffer128) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_wp_Gctr_blocks128 (alg:algorithm) (in_b:buffer128) (out_b:buffer128) (key:(seq nat32)) (round_keys:(seq quad32)) (keys_b:buffer128) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ (sse_enabled /\ (Vale.X64.Decls.buffers_disjoint128 in_b out_b \/ in_b == out_b) /\ Vale....
val va_wp_Gctr_blocks128 (alg: algorithm) (in_b out_b: buffer128) (key: (seq nat32)) (round_keys: (seq quad32)) (keys_b: buffer128) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Gctr_blocks128 (alg: algorithm) (in_b out_b: buffer128) ...
false
null
false
(va_get_ok va_s0 /\ (sse_enabled /\ (Vale.X64.Decls.buffers_disjoint128 in_b out_b \/ in_b == out_b) /\ Vale.X64.Decls.validSrcAddrs128 (va_get_mem_heaplet 1 va_s0) (va_get_reg64 rRax va_s0) in_b (va_get_reg64 rRdx va_s0) (va_get_mem_layout va_s0) Secret /\ Vale.X64.Decls.validDs...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.AES.AES_common_s.algorithm", "Vale.X64.Memory.buffer128", "FStar.Seq.Base.seq", "Vale.X64.Memory.nat32", "Vale.X64.Decls.quad32", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Vale.X64.CPU_Features_s.sse_enabled", "Prims.l_or", "Vale....
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_wp_Gctr_blocks128 (alg: algorithm) (in_b out_b: buffer128) (key: (seq nat32)) (round_keys: (seq quad32)) (keys_b: buffer128) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.AES.X64.GCMencryptOpt.va_wp_Gctr_blocks128
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
alg: Vale.AES.AES_common_s.algorithm -> in_b: Vale.X64.Memory.buffer128 -> out_b: Vale.X64.Memory.buffer128 -> key: FStar.Seq.Base.seq Vale.X64.Memory.nat32 -> round_keys: FStar.Seq.Base.seq Vale.X64.Decls.quad32 -> keys_b: Vale.X64.Memory.buffer128 -> va_s0: Vale.X64.Decls.va_state -> ...
{ "end_col": 62, "end_line": 173, "start_col": 2, "start_line": 146 }
Prims.Tot
val aes_reqs (alg: algorithm) (key: seq nat32) (round_keys: seq quad32) (keys_b: buffer128) (key_ptr: int) (heap0: vale_heap) (layout: vale_heap_layout) : prop0
[ { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.X64.AESopt2", "short_module": null }, { "abbrev": false, "ful...
false
let aes_reqs (alg:algorithm) (key:seq nat32) (round_keys:seq quad32) (keys_b:buffer128) (key_ptr:int) (heap0:vale_heap) (layout:vale_heap_layout) : prop0 = aesni_enabled /\ avx_enabled /\ (alg = AES_128 \/ alg = AES_256) /\ is_aes_key_LE alg key /\ length(round_keys) == nr(alg) + 1 /\ round_keys == key_...
val aes_reqs (alg: algorithm) (key: seq nat32) (round_keys: seq quad32) (keys_b: buffer128) (key_ptr: int) (heap0: vale_heap) (layout: vale_heap_layout) : prop0 let aes_reqs (alg: algorithm) (key: seq nat32) (round_keys: seq quad32) (keys_b: buffer12...
false
null
false
aesni_enabled /\ avx_enabled /\ (alg = AES_128 \/ alg = AES_256) /\ is_aes_key_LE alg key /\ length (round_keys) == nr (alg) + 1 /\ round_keys == key_to_round_keys_LE alg key /\ validSrcAddrs128 heap0 key_ptr keys_b (nr alg + 1) layout Secret /\ s128 heap0 keys_b == round_keys
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.AES.AES_common_s.algorithm", "FStar.Seq.Base.seq", "Vale.X64.Memory.nat32", "Vale.X64.Decls.quad32", "Vale.X64.Memory.buffer128", "Prims.int", "Vale.X64.InsBasic.vale_heap", "Vale.Arch.HeapImpl.vale_heap_layout", "Prims.l_and", "Prims.b2t", "Vale.X64.CPU_Features_s.aesni_enabled", "Vale....
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val aes_reqs (alg: algorithm) (key: seq nat32) (round_keys: seq quad32) (keys_b: buffer128) (key_ptr: int) (heap0: vale_heap) (layout: vale_heap_layout) : prop0
[]
Vale.AES.X64.GCMencryptOpt.aes_reqs
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
alg: Vale.AES.AES_common_s.algorithm -> key: FStar.Seq.Base.seq Vale.X64.Memory.nat32 -> round_keys: FStar.Seq.Base.seq Vale.X64.Decls.quad32 -> keys_b: Vale.X64.Memory.buffer128 -> key_ptr: Prims.int -> heap0: Vale.X64.InsBasic.vale_heap -> layout: Vale.Arch.HeapImpl.vale_heap_layout -> ...
{ "end_col": 33, "end_line": 55, "start_col": 2, "start_line": 49 }
Prims.Tot
val va_wp_Gctr_register (alg: algorithm) (key: (seq nat32)) (round_keys: (seq quad32)) (keys_b: buffer128) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_wp_Gctr_register (alg:algorithm) (key:(seq nat32)) (round_keys:(seq quad32)) (keys_b:buffer128) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ (sse_enabled /\ va_get_xmm 9 va_s0 == Vale.Def.Words_s.Mkfour #Vale.Def.Types_s.nat32 202182159 134810123 67438087 66051 /\ aes...
val va_wp_Gctr_register (alg: algorithm) (key: (seq nat32)) (round_keys: (seq quad32)) (keys_b: buffer128) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Gctr_register (alg: algorithm) (key: (seq nat32)) (round_keys: (seq quad32)) ...
false
null
false
(va_get_ok va_s0 /\ (sse_enabled /\ va_get_xmm 9 va_s0 == Vale.Def.Words_s.Mkfour #Vale.Def.Types_s.nat32 202182159 134810123 67438087 66051 /\ aes_reqs alg key round_keys keys_b (va_get_reg64 rR8 va_s0) (va_get_mem_heaplet 0 va_s0) (va_get_mem_layout va_s0)) /\ (fora...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.AES.AES_common_s.algorithm", "FStar.Seq.Base.seq", "Vale.X64.Memory.nat32", "Vale.X64.Decls.quad32", "Vale.X64.Memory.buffer128", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Vale.X64.CPU_Features_s.sse_enabled", "Prims.eq2", "Vale.D...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_wp_Gctr_register (alg: algorithm) (key: (seq nat32)) (round_keys: (seq quad32)) (keys_b: buffer128) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.AES.X64.GCMencryptOpt.va_wp_Gctr_register
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
alg: Vale.AES.AES_common_s.algorithm -> key: FStar.Seq.Base.seq Vale.X64.Memory.nat32 -> round_keys: FStar.Seq.Base.seq Vale.X64.Decls.quad32 -> keys_b: Vale.X64.Memory.buffer128 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 58, "end_line": 91, "start_col": 2, "start_line": 80 }
Prims.Tot
val va_quick_Gcm_make_length_quad: Prims.unit -> (va_quickCode unit (va_code_Gcm_make_length_quad ()))
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_quick_Gcm_make_length_quad () : (va_quickCode unit (va_code_Gcm_make_length_quad ())) = (va_QProc (va_code_Gcm_make_length_quad ()) ([va_Mod_flags; va_Mod_reg64 rRax; va_Mod_xmm 0]) va_wp_Gcm_make_length_quad va_wpProof_Gcm_make_length_quad)
val va_quick_Gcm_make_length_quad: Prims.unit -> (va_quickCode unit (va_code_Gcm_make_length_quad ())) let va_quick_Gcm_make_length_quad () : (va_quickCode unit (va_code_Gcm_make_length_quad ())) =
false
null
false
(va_QProc (va_code_Gcm_make_length_quad ()) ([va_Mod_flags; va_Mod_reg64 rRax; va_Mod_xmm 0]) va_wp_Gcm_make_length_quad va_wpProof_Gcm_make_length_quad)
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Prims.unit", "Vale.X64.QuickCode.va_QProc", "Vale.AES.X64.GCMencryptOpt.va_code_Gcm_make_length_quad", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_Mod_reg64", "Vale.X64.Machine_s.rRax", "Vale.X64.QuickCode.va_Mod_xmm", "Prims.Nil", "Vale.A...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
false
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_quick_Gcm_make_length_quad: Prims.unit -> (va_quickCode unit (va_code_Gcm_make_length_quad ()))
[]
Vale.AES.X64.GCMencryptOpt.va_quick_Gcm_make_length_quad
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
_: Prims.unit -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.AES.X64.GCMencryptOpt.va_code_Gcm_make_length_quad ())
{ "end_col": 63, "end_line": 230, "start_col": 2, "start_line": 229 }
Prims.Tot
val va_quick_Ghash_extra_bytes (hkeys_b: buffer128) (total_bytes: nat) (old_hash h_LE: quad32) (completed_quads: (seq quad32)) : (va_quickCode unit (va_code_Ghash_extra_bytes ()))
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_quick_Ghash_extra_bytes (hkeys_b:buffer128) (total_bytes:nat) (old_hash:quad32) (h_LE:quad32) (completed_quads:(seq quad32)) : (va_quickCode unit (va_code_Ghash_extra_bytes ())) = (va_QProc (va_code_Ghash_extra_bytes ()) ([va_Mod_flags; va_Mod_xmm 8; va_Mod_xmm 7; va_Mod_xmm 6; va_Mod_xmm 5; va_Mod_xmm...
val va_quick_Ghash_extra_bytes (hkeys_b: buffer128) (total_bytes: nat) (old_hash h_LE: quad32) (completed_quads: (seq quad32)) : (va_quickCode unit (va_code_Ghash_extra_bytes ())) let va_quick_Ghash_extra_bytes (hkeys_b: buffer128) (total_bytes: nat) (old_hash h_LE: quad32)...
false
null
false
(va_QProc (va_code_Ghash_extra_bytes ()) ([ va_Mod_flags; va_Mod_xmm 8; va_Mod_xmm 7; va_Mod_xmm 6; va_Mod_xmm 5; va_Mod_xmm 4; va_Mod_xmm 3; va_Mod_xmm 2; va_Mod_xmm 1; va_Mod_xmm 0; va_Mod_reg64 rR11; va_Mod_reg64 rRcx ]) (va_wp_Ghash_extra_bytes hkeys_b total_bytes old_hash h_LE complet...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.X64.Memory.buffer128", "Prims.nat", "Vale.X64.Decls.quad32", "FStar.Seq.Base.seq", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.AES.X64.GCMencryptOpt.va_code_Ghash_extra_bytes", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_Mod_xm...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
false
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_quick_Ghash_extra_bytes (hkeys_b: buffer128) (total_bytes: nat) (old_hash h_LE: quad32) (completed_quads: (seq quad32)) : (va_quickCode unit (va_code_Ghash_extra_bytes ()))
[]
Vale.AES.X64.GCMencryptOpt.va_quick_Ghash_extra_bytes
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
hkeys_b: Vale.X64.Memory.buffer128 -> total_bytes: Prims.nat -> old_hash: Vale.X64.Decls.quad32 -> h_LE: Vale.X64.Decls.quad32 -> completed_quads: FStar.Seq.Base.seq Vale.X64.Decls.quad32 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.AES.X64.GCMencryptOpt.va_code_Ghash_extra_bytes ())
{ "end_col": 21, "end_line": 313, "start_col": 2, "start_line": 309 }
Prims.Tot
val va_wp_Gcm_make_length_quad (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_wp_Gcm_make_length_quad (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ (sse_enabled /\ 8 `op_Multiply` va_get_reg64 rR13 va_s0 < pow2_64 /\ 8 `op_Multiply` va_get_reg64 rR11 va_s0 < pow2_64) /\ (forall (va_x_xmm0:quad32) (va_x_rax:nat64) (va_x_efl:Vale.X64.Flags.t) . ...
val va_wp_Gcm_make_length_quad (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Gcm_make_length_quad (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ (sse_enabled /\ 8 `op_Multiply` (va_get_reg64 rR13 va_s0) < pow2_64 /\ 8 `op_Multiply` (va_get_reg64 rR11 va_s0) < pow2_64) /\ (forall (va_x_xmm0: quad32) (va_x_rax: nat64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_reg64 rRax va_x_rax (va_upd_xmm 0...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Vale.X64.CPU_Features_s.sse_enabled", "Prims.op_LessThan", "Prims.op_Multiply", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rR13", "Vale.X64.Machine_s.pow2_64", "Vale.X64.Machine_s.rR11", ...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_wp_Gcm_make_length_quad (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.AES.X64.GCMencryptOpt.va_wp_Gcm_make_length_quad
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 53, "end_line": 220, "start_col": 2, "start_line": 213 }
Prims.Tot
val va_quick_Gctr_blocks128 (alg: algorithm) (in_b out_b: buffer128) (key: (seq nat32)) (round_keys: (seq quad32)) (keys_b: buffer128) : (va_quickCode unit (va_code_Gctr_blocks128 alg))
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_quick_Gctr_blocks128 (alg:algorithm) (in_b:buffer128) (out_b:buffer128) (key:(seq nat32)) (round_keys:(seq quad32)) (keys_b:buffer128) : (va_quickCode unit (va_code_Gctr_blocks128 alg)) = (va_QProc (va_code_Gctr_blocks128 alg) ([va_Mod_flags; va_Mod_mem_heaplet 1; va_Mod_xmm 10; va_Mod_xmm 11; va_Mod_xmm...
val va_quick_Gctr_blocks128 (alg: algorithm) (in_b out_b: buffer128) (key: (seq nat32)) (round_keys: (seq quad32)) (keys_b: buffer128) : (va_quickCode unit (va_code_Gctr_blocks128 alg)) let va_quick_Gctr_blocks128 (alg: algorithm) (in_b out_b: buffer128) (key: (seq na...
false
null
false
(va_QProc (va_code_Gctr_blocks128 alg) ([ va_Mod_flags; va_Mod_mem_heaplet 1; va_Mod_xmm 10; va_Mod_xmm 11; va_Mod_xmm 6; va_Mod_xmm 5; va_Mod_xmm 4; va_Mod_xmm 3; va_Mod_xmm 2; va_Mod_xmm 1; va_Mod_xmm 0; va_Mod_reg64 rR10; va_Mod_reg64 rR11; va_Mod_reg64 rRbx; va_Mod_mem ]) (va_w...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.AES.AES_common_s.algorithm", "Vale.X64.Memory.buffer128", "FStar.Seq.Base.seq", "Vale.X64.Memory.nat32", "Vale.X64.Decls.quad32", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.AES.X64.GCMencryptOpt.va_code_Gctr_blocks128", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode....
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
false
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_quick_Gctr_blocks128 (alg: algorithm) (in_b out_b: buffer128) (key: (seq nat32)) (round_keys: (seq quad32)) (keys_b: buffer128) : (va_quickCode unit (va_code_Gctr_blocks128 alg))
[]
Vale.AES.X64.GCMencryptOpt.va_quick_Gctr_blocks128
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
alg: Vale.AES.AES_common_s.algorithm -> in_b: Vale.X64.Memory.buffer128 -> out_b: Vale.X64.Memory.buffer128 -> key: FStar.Seq.Base.seq Vale.X64.Memory.nat32 -> round_keys: FStar.Seq.Base.seq Vale.X64.Decls.quad32 -> keys_b: Vale.X64.Memory.buffer128 -> Vale.X64.QuickCode.va_quickCode Prims.un...
{ "end_col": 33, "end_line": 192, "start_col": 2, "start_line": 188 }
Prims.Tot
val va_quick_Gctr_register (alg: algorithm) (key: (seq nat32)) (round_keys: (seq quad32)) (keys_b: buffer128) : (va_quickCode unit (va_code_Gctr_register alg))
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_quick_Gctr_register (alg:algorithm) (key:(seq nat32)) (round_keys:(seq quad32)) (keys_b:buffer128) : (va_quickCode unit (va_code_Gctr_register alg)) = (va_QProc (va_code_Gctr_register alg) ([va_Mod_reg64 rR12; va_Mod_flags; va_Mod_xmm 8; va_Mod_xmm 2; va_Mod_xmm 1; va_Mod_xmm 0]) (va_wp_Gctr_register alg...
val va_quick_Gctr_register (alg: algorithm) (key: (seq nat32)) (round_keys: (seq quad32)) (keys_b: buffer128) : (va_quickCode unit (va_code_Gctr_register alg)) let va_quick_Gctr_register (alg: algorithm) (key: (seq nat32)) (round_keys: (seq quad32)) (keys_b: buffer128...
false
null
false
(va_QProc (va_code_Gctr_register alg) ([va_Mod_reg64 rR12; va_Mod_flags; va_Mod_xmm 8; va_Mod_xmm 2; va_Mod_xmm 1; va_Mod_xmm 0]) (va_wp_Gctr_register alg key round_keys keys_b) (va_wpProof_Gctr_register alg key round_keys keys_b))
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.AES.AES_common_s.algorithm", "FStar.Seq.Base.seq", "Vale.X64.Memory.nat32", "Vale.X64.Decls.quad32", "Vale.X64.Memory.buffer128", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.AES.X64.GCMencryptOpt.va_code_Gctr_register", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.v...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
false
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_quick_Gctr_register (alg: algorithm) (key: (seq nat32)) (round_keys: (seq quad32)) (keys_b: buffer128) : (va_quickCode unit (va_code_Gctr_register alg))
[]
Vale.AES.X64.GCMencryptOpt.va_quick_Gctr_register
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
alg: Vale.AES.AES_common_s.algorithm -> key: FStar.Seq.Base.seq Vale.X64.Memory.nat32 -> round_keys: FStar.Seq.Base.seq Vale.X64.Decls.quad32 -> keys_b: Vale.X64.Memory.buffer128 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.AES.X64.GCMencryptOpt.va_code_Gctr_register alg)
{ "end_col": 57, "end_line": 105, "start_col": 2, "start_line": 103 }
Prims.Tot
val va_quick_Gcm_blocks_auth (auth_b abytes_b hkeys_b: buffer128) (h_LE: quad32) : (va_quickCode (seq quad32) (va_code_Gcm_blocks_auth ()))
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_quick_Gcm_blocks_auth (auth_b:buffer128) (abytes_b:buffer128) (hkeys_b:buffer128) (h_LE:quad32) : (va_quickCode (seq quad32) (va_code_Gcm_blocks_auth ())) = (va_QProc (va_code_Gcm_blocks_auth ()) ([va_Mod_xmm 9; va_Mod_xmm 8; va_Mod_xmm 7; va_Mod_xmm 6; va_Mod_xmm 5; va_Mod_xmm 4; va_Mod_xmm 3; va_Mod_xm...
val va_quick_Gcm_blocks_auth (auth_b abytes_b hkeys_b: buffer128) (h_LE: quad32) : (va_quickCode (seq quad32) (va_code_Gcm_blocks_auth ())) let va_quick_Gcm_blocks_auth (auth_b abytes_b hkeys_b: buffer128) (h_LE: quad32) : (va_quickCode (seq quad32) (va_code_Gcm_blocks_auth ())) =
false
null
false
(va_QProc (va_code_Gcm_blocks_auth ()) ([ va_Mod_xmm 9; va_Mod_xmm 8; va_Mod_xmm 7; va_Mod_xmm 6; va_Mod_xmm 5; va_Mod_xmm 4; va_Mod_xmm 3; va_Mod_xmm 2; va_Mod_xmm 1; va_Mod_xmm 0; va_Mod_flags; va_Mod_reg64 rR15; va_Mod_reg64 rRcx; va_Mod_reg64 rR10; va_Mod_reg64 rR11; va_Mod_reg64 rRdx ...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.X64.Memory.buffer128", "Vale.X64.Decls.quad32", "Vale.X64.QuickCode.va_QProc", "FStar.Seq.Base.seq", "Vale.AES.X64.GCMencryptOpt.va_code_Gcm_blocks_auth", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_xmm", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_Mod_...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
false
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_quick_Gcm_blocks_auth (auth_b abytes_b hkeys_b: buffer128) (h_LE: quad32) : (va_quickCode (seq quad32) (va_code_Gcm_blocks_auth ()))
[]
Vale.AES.X64.GCMencryptOpt.va_quick_Gcm_blocks_auth
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
auth_b: Vale.X64.Memory.buffer128 -> abytes_b: Vale.X64.Memory.buffer128 -> hkeys_b: Vale.X64.Memory.buffer128 -> h_LE: Vale.X64.Decls.quad32 -> Vale.X64.QuickCode.va_quickCode (FStar.Seq.Base.seq Vale.X64.Decls.quad32) (Vale.AES.X64.GCMencryptOpt.va_code_Gcm_blocks_auth ())
{ "end_col": 62, "end_line": 407, "start_col": 2, "start_line": 403 }
Prims.Tot
val va_wp_Ghash_extra_bytes (hkeys_b: buffer128) (total_bytes: nat) (old_hash h_LE: quad32) (completed_quads: (seq quad32)) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_wp_Ghash_extra_bytes (hkeys_b:buffer128) (total_bytes:nat) (old_hash:quad32) (h_LE:quad32) (completed_quads:(seq quad32)) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ (pclmulqdq_enabled /\ avx_enabled /\ sse_enabled /\ va_get_xmm 9 va_s0 == Vale.Def.Words_s.Mkfour #Va...
val va_wp_Ghash_extra_bytes (hkeys_b: buffer128) (total_bytes: nat) (old_hash h_LE: quad32) (completed_quads: (seq quad32)) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Ghash_extra_bytes (hkeys_b: buffer128) (total_bytes: nat) (old_has...
false
null
false
(va_get_ok va_s0 /\ (pclmulqdq_enabled /\ avx_enabled /\ sse_enabled /\ va_get_xmm 9 va_s0 == Vale.Def.Words_s.Mkfour #Vale.Def.Types_s.nat32 202182159 134810123 67438087 66051 /\ va_get_xmm 8 va_s0 == Vale.Def.Types_s.reverse_bytes_quad32 (Vale.AES.GHash.ghash_incremental0 h_LE old_hash ...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.X64.Memory.buffer128", "Prims.nat", "Vale.X64.Decls.quad32", "FStar.Seq.Base.seq", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Vale.X64.CPU_Features_s.pclmulqdq_enabled", "Vale.X64.CPU_Features_s.avx_enabled", "Vale.X64.CPU_Features_s...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_wp_Ghash_extra_bytes (hkeys_b: buffer128) (total_bytes: nat) (old_hash h_LE: quad32) (completed_quads: (seq quad32)) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.AES.X64.GCMencryptOpt.va_wp_Ghash_extra_bytes
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
hkeys_b: Vale.X64.Memory.buffer128 -> total_bytes: Prims.nat -> old_hash: Vale.X64.Decls.quad32 -> h_LE: Vale.X64.Decls.quad32 -> completed_quads: FStar.Seq.Base.seq Vale.X64.Decls.quad32 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> ...
{ "end_col": 53, "end_line": 294, "start_col": 2, "start_line": 269 }
Prims.Tot
val va_quick_Save_registers (win: bool) : (va_quickCode unit (va_code_Save_registers win))
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_quick_Save_registers (win:bool) : (va_quickCode unit (va_code_Save_registers win)) = (va_QProc (va_code_Save_registers win) ([va_Mod_stackTaint; va_Mod_flags; va_Mod_stack; va_Mod_reg64 rRsp; va_Mod_reg64 rRax]) (va_wp_Save_registers win) (va_wpProof_Save_registers win))
val va_quick_Save_registers (win: bool) : (va_quickCode unit (va_code_Save_registers win)) let va_quick_Save_registers (win: bool) : (va_quickCode unit (va_code_Save_registers win)) =
false
null
false
(va_QProc (va_code_Save_registers win) ([va_Mod_stackTaint; va_Mod_flags; va_Mod_stack; va_Mod_reg64 rRsp; va_Mod_reg64 rRax]) (va_wp_Save_registers win) (va_wpProof_Save_registers win))
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Prims.bool", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.AES.X64.GCMencryptOpt.va_code_Save_registers", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_stackTaint", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_Mod_stack", "Vale.X64.QuickCode.va_Mod_reg64",...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
false
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_quick_Save_registers (win: bool) : (va_quickCode unit (va_code_Save_registers win))
[]
Vale.AES.X64.GCMencryptOpt.va_quick_Save_registers
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
win: Prims.bool -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.AES.X64.GCMencryptOpt.va_code_Save_registers win)
{ "end_col": 9, "end_line": 542, "start_col": 2, "start_line": 540 }
Prims.Tot
val va_quick_Restore_registers (win: bool) (old_rsp: nat) (old_xmm6 old_xmm7 old_xmm8 old_xmm9 old_xmm10 old_xmm11 old_xmm12 old_xmm13 old_xmm14 old_xmm15: quad32) : (va_quickCode unit (va_code_Restore_registers win))
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_quick_Restore_registers (win:bool) (old_rsp:nat) (old_xmm6:quad32) (old_xmm7:quad32) (old_xmm8:quad32) (old_xmm9:quad32) (old_xmm10:quad32) (old_xmm11:quad32) (old_xmm12:quad32) (old_xmm13:quad32) (old_xmm14:quad32) (old_xmm15:quad32) : (va_quickCode unit (va_code_Restore_registers win)) = (va_QProc (va_...
val va_quick_Restore_registers (win: bool) (old_rsp: nat) (old_xmm6 old_xmm7 old_xmm8 old_xmm9 old_xmm10 old_xmm11 old_xmm12 old_xmm13 old_xmm14 old_xmm15: quad32) : (va_quickCode unit (va_code_Restore_registers win)) let va_quick_Restore_registers (win: bool) (old_rsp: nat) ...
false
null
false
(va_QProc (va_code_Restore_registers win) ([ va_Mod_stackTaint; va_Mod_flags; va_Mod_reg64 rRsp; va_Mod_stack; va_Mod_xmm 15; va_Mod_xmm 14; va_Mod_xmm 13; va_Mod_xmm 12; va_Mod_xmm 11; va_Mod_xmm 10; va_Mod_xmm 9; va_Mod_xmm 8; va_Mod_xmm 7; va_Mod_xmm 6; va_Mod_reg64 rR15; va_Mod_reg64 rR1...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Prims.bool", "Prims.nat", "Vale.X64.Decls.quad32", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.AES.X64.GCMencryptOpt.va_code_Restore_registers", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_stackTaint", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_Mod...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
false
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_quick_Restore_registers (win: bool) (old_rsp: nat) (old_xmm6 old_xmm7 old_xmm8 old_xmm9 old_xmm10 old_xmm11 old_xmm12 old_xmm13 old_xmm14 old_xmm15: quad32) : (va_quickCode unit (va_code_Restore_registers win))
[]
Vale.AES.X64.GCMencryptOpt.va_quick_Restore_registers
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
win: Prims.bool -> old_rsp: Prims.nat -> old_xmm6: Vale.X64.Decls.quad32 -> old_xmm7: Vale.X64.Decls.quad32 -> old_xmm8: Vale.X64.Decls.quad32 -> old_xmm9: Vale.X64.Decls.quad32 -> old_xmm10: Vale.X64.Decls.quad32 -> old_xmm11: Vale.X64.Decls.quad32 -> old_xmm12: Vale.X64.Decls.quad...
{ "end_col": 65, "end_line": 718, "start_col": 2, "start_line": 711 }
Prims.Tot
val va_wp_Save_registers (win: bool) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_wp_Save_registers (win:bool) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ sse_enabled /\ va_get_reg64 rRsp va_s0 == Vale.X64.Stack_i.init_rsp (va_get_stack va_s0) /\ (forall (va_x_rax:nat64) (va_x_rsp:nat64) (va_x_stack:vale_stack) (va_x_efl:Vale.X64.Flags.t) (va_x_...
val va_wp_Save_registers (win: bool) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Save_registers (win: bool) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ sse_enabled /\ va_get_reg64 rRsp va_s0 == Vale.X64.Stack_i.init_rsp (va_get_stack va_s0) /\ (forall (va_x_rax: nat64) (va_x_rsp: nat64) (va_x_stack: vale_stack) (va_x_efl: Vale.X64.Flags.t) (va_x_stackTaint: memtaint). let va_sM = va_upd_stackTaint va_x_stac...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Prims.bool", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Vale.X64.CPU_Features_s.sse_enabled", "Prims.eq2", "Vale.Def.Words_s.nat64", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRsp", "Vale.X64.Stack_i.init_rsp", "Vale.X64.Decls....
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_wp_Save_registers (win: bool) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.AES.X64.GCMencryptOpt.va_wp_Save_registers
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
win: Prims.bool -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 10, "end_line": 530, "start_col": 2, "start_line": 474 }
Prims.Tot
val va_wp_Gcm_blocks_auth (auth_b abytes_b hkeys_b: buffer128) (h_LE: quad32) (va_s0: va_state) (va_k: (va_state -> (seq quad32) -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_wp_Gcm_blocks_auth (auth_b:buffer128) (abytes_b:buffer128) (hkeys_b:buffer128) (h_LE:quad32) (va_s0:va_state) (va_k:(va_state -> (seq quad32) -> Type0)) : Type0 = (va_get_ok va_s0 /\ (sse_enabled /\ Vale.X64.Decls.validSrcAddrs128 (va_get_mem_heaplet 1 va_s0) (va_get_reg64 rRdi va_s0) auth_b (va_get_reg6...
val va_wp_Gcm_blocks_auth (auth_b abytes_b hkeys_b: buffer128) (h_LE: quad32) (va_s0: va_state) (va_k: (va_state -> (seq quad32) -> Type0)) : Type0 let va_wp_Gcm_blocks_auth (auth_b abytes_b hkeys_b: buffer128) (h_LE: quad32) (va_s0: va_state) (va_k: (va_state -> (seq...
false
null
false
(va_get_ok va_s0 /\ (sse_enabled /\ Vale.X64.Decls.validSrcAddrs128 (va_get_mem_heaplet 1 va_s0) (va_get_reg64 rRdi va_s0) auth_b (va_get_reg64 rRdx va_s0) (va_get_mem_layout va_s0) Secret /\ Vale.X64.Decls.validSrcAddrs128 (va_get_mem_heaplet 7 va_s0) (va_get_reg64 rRbx va...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.X64.Memory.buffer128", "Vale.X64.Decls.quad32", "Vale.X64.Decls.va_state", "FStar.Seq.Base.seq", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Vale.X64.CPU_Features_s.sse_enabled", "Vale.X64.Decls.validSrcAddrs128", "Vale.X64.Decls.va_get_mem_heaplet", "Vale.X64.Decls.va_get_reg...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_wp_Gcm_blocks_auth (auth_b abytes_b hkeys_b: buffer128) (h_LE: quad32) (va_s0: va_state) (va_k: (va_state -> (seq quad32) -> Type0)) : Type0
[]
Vale.AES.X64.GCMencryptOpt.va_wp_Gcm_blocks_auth
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
auth_b: Vale.X64.Memory.buffer128 -> abytes_b: Vale.X64.Memory.buffer128 -> hkeys_b: Vale.X64.Memory.buffer128 -> h_LE: Vale.X64.Decls.quad32 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: FStar.Seq.Base.seq Vale.X64.Decls.quad32 -> Type0) -> Type0
{ "end_col": 58, "end_line": 390, "start_col": 2, "start_line": 358 }
Prims.Tot
val va_wp_Restore_registers (win: bool) (old_rsp: nat) (old_xmm6 old_xmm7 old_xmm8 old_xmm9 old_xmm10 old_xmm11 old_xmm12 old_xmm13 old_xmm14 old_xmm15: quad32) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_wp_Restore_registers (win:bool) (old_rsp:nat) (old_xmm6:quad32) (old_xmm7:quad32) (old_xmm8:quad32) (old_xmm9:quad32) (old_xmm10:quad32) (old_xmm11:quad32) (old_xmm12:quad32) (old_xmm13:quad32) (old_xmm14:quad32) (old_xmm15:quad32) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok ...
val va_wp_Restore_registers (win: bool) (old_rsp: nat) (old_xmm6 old_xmm7 old_xmm8 old_xmm9 old_xmm10 old_xmm11 old_xmm12 old_xmm13 old_xmm14 old_xmm15: quad32) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Restore_registers (win: bool) (...
false
null
false
(va_get_ok va_s0 /\ sse_enabled /\ old_rsp == Vale.X64.Stack_i.init_rsp (va_get_stack va_s0) /\ Vale.X64.Stack_i.valid_stack_slot64s (va_get_reg64 rRsp va_s0) (8 + va_if win (fun _ -> 10 `op_Multiply` 2) (fun _ -> 0)) (va_get_stack va_s0) Secret (va_get_stackTaint va_s0) /\ va_get_reg64 rRsp va_s0 =...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Prims.bool", "Prims.nat", "Vale.X64.Decls.quad32", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Vale.X64.CPU_Features_s.sse_enabled", "Prims.eq2", "Vale.X64.Stack_i.init_rsp", "Vale.X64.Decls.va_get_stack", "Vale.X64.Stack_i.valid_stack_s...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_wp_Restore_registers (win: bool) (old_rsp: nat) (old_xmm6 old_xmm7 old_xmm8 old_xmm9 old_xmm10 old_xmm11 old_xmm12 old_xmm13 old_xmm14 old_xmm15: quad32) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.AES.X64.GCMencryptOpt.va_wp_Restore_registers
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
win: Prims.bool -> old_rsp: Prims.nat -> old_xmm6: Vale.X64.Decls.quad32 -> old_xmm7: Vale.X64.Decls.quad32 -> old_xmm8: Vale.X64.Decls.quad32 -> old_xmm9: Vale.X64.Decls.quad32 -> old_xmm10: Vale.X64.Decls.quad32 -> old_xmm11: Vale.X64.Decls.quad32 -> old_xmm12: Vale.X64.Decls.quad...
{ "end_col": 82, "end_line": 691, "start_col": 2, "start_line": 623 }
Prims.Tot
val va_quick_Gcm_blocks_stdcall (win: bool) (alg: algorithm) (auth_b: buffer128) (auth_bytes auth_num: nat64) (keys_b iv_b: buffer128) (iv: supported_iv_LE) (hkeys_b abytes_b in128x6_b out128x6_b: buffer128) (len128x6_num: nat64) (in128_b out128_b: buffer128) ...
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_quick_Gcm_blocks_stdcall (win:bool) (alg:algorithm) (auth_b:buffer128) (auth_bytes:nat64) (auth_num:nat64) (keys_b:buffer128) (iv_b:buffer128) (iv:supported_iv_LE) (hkeys_b:buffer128) (abytes_b:buffer128) (in128x6_b:buffer128) (out128x6_b:buffer128) (len128x6_num:nat64) (in128_b:buffer128) (out128_b:buffer...
val va_quick_Gcm_blocks_stdcall (win: bool) (alg: algorithm) (auth_b: buffer128) (auth_bytes auth_num: nat64) (keys_b iv_b: buffer128) (iv: supported_iv_LE) (hkeys_b abytes_b in128x6_b out128x6_b: buffer128) (len128x6_num: nat64) (in128_b out128_b: buffer128) ...
false
null
false
(va_QProc (va_code_Gcm_blocks_stdcall win alg) ([ va_Mod_stackTaint; va_Mod_stack; va_Mod_flags; va_Mod_mem_heaplet 6; va_Mod_mem_heaplet 5; va_Mod_mem_heaplet 4; va_Mod_mem_heaplet 3; va_Mod_mem_heaplet 2; va_Mod_mem_heaplet 1; va_Mod_mem_layout; va_Mod_xmm 15; va_Mod_xmm 14; va_Mod_xmm 13;...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Prims.bool", "Vale.AES.AES_common_s.algorithm", "Vale.X64.Memory.buffer128", "Vale.X64.Memory.nat64", "Vale.AES.GCM_s.supported_iv_LE", "FStar.Seq.Base.seq", "Vale.X64.Memory.nat32", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.AES.X64.GCMencryptOpt.va_code_Gcm_blocks_stdcall", "Prims.Con...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
false
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_quick_Gcm_blocks_stdcall (win: bool) (alg: algorithm) (auth_b: buffer128) (auth_bytes auth_num: nat64) (keys_b iv_b: buffer128) (iv: supported_iv_LE) (hkeys_b abytes_b in128x6_b out128x6_b: buffer128) (len128x6_num: nat64) (in128_b out128_b: buffer128) ...
[]
Vale.AES.X64.GCMencryptOpt.va_quick_Gcm_blocks_stdcall
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
win: Prims.bool -> alg: Vale.AES.AES_common_s.algorithm -> auth_b: Vale.X64.Memory.buffer128 -> auth_bytes: Vale.X64.Memory.nat64 -> auth_num: Vale.X64.Memory.nat64 -> keys_b: Vale.X64.Memory.buffer128 -> iv_b: Vale.X64.Memory.buffer128 -> iv: Vale.AES.GCM_s.supported_iv_LE -> hkeys...
{ "end_col": 84, "end_line": 1533, "start_col": 2, "start_line": 1521 }
Prims.Tot
val va_quick_Compute_iv_stdcall (win: bool) (iv: supported_iv_LE) (iv_b: buffer128) (num_bytes len: nat64) (j0_b iv_extra_b hkeys_b: buffer128) : (va_quickCode unit (va_code_Compute_iv_stdcall win))
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_quick_Compute_iv_stdcall (win:bool) (iv:supported_iv_LE) (iv_b:buffer128) (num_bytes:nat64) (len:nat64) (j0_b:buffer128) (iv_extra_b:buffer128) (hkeys_b:buffer128) : (va_quickCode unit (va_code_Compute_iv_stdcall win)) = (va_QProc (va_code_Compute_iv_stdcall win) ([va_Mod_stackTaint; va_Mod_stack; va_Mod_f...
val va_quick_Compute_iv_stdcall (win: bool) (iv: supported_iv_LE) (iv_b: buffer128) (num_bytes len: nat64) (j0_b iv_extra_b hkeys_b: buffer128) : (va_quickCode unit (va_code_Compute_iv_stdcall win)) let va_quick_Compute_iv_stdcall (win: bool) (iv: supported_iv_LE) (iv...
false
null
false
(va_QProc (va_code_Compute_iv_stdcall win) ([ va_Mod_stackTaint; va_Mod_stack; va_Mod_flags; va_Mod_mem_heaplet 7; va_Mod_mem_layout; va_Mod_xmm 15; va_Mod_xmm 14; va_Mod_xmm 13; va_Mod_xmm 12; va_Mod_xmm 11; va_Mod_xmm 10; va_Mod_xmm 9; va_Mod_xmm 8; va_Mod_xmm 7; va_Mod_xmm 6; va_Mod_xmm 5...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Prims.bool", "Vale.AES.GCM_s.supported_iv_LE", "Vale.X64.Memory.buffer128", "Vale.X64.Memory.nat64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.AES.X64.GCMencryptOpt.va_code_Compute_iv_stdcall", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_stackTaint", "Vale.X64....
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
false
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_quick_Compute_iv_stdcall (win: bool) (iv: supported_iv_LE) (iv_b: buffer128) (num_bytes len: nat64) (j0_b iv_extra_b hkeys_b: buffer128) : (va_quickCode unit (va_code_Compute_iv_stdcall win))
[]
Vale.AES.X64.GCMencryptOpt.va_quick_Compute_iv_stdcall
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
win: Prims.bool -> iv: Vale.AES.GCM_s.supported_iv_LE -> iv_b: Vale.X64.Memory.buffer128 -> num_bytes: Vale.X64.Memory.nat64 -> len: Vale.X64.Memory.nat64 -> j0_b: Vale.X64.Memory.buffer128 -> iv_extra_b: Vale.X64.Memory.buffer128 -> hkeys_b: Vale.X64.Memory.buffer128 -> Vale.X64.Quic...
{ "end_col": 13, "end_line": 1833, "start_col": 2, "start_line": 1824 }
Prims.Tot
val va_ens_Compute_iv_stdcall (va_b0: va_code) (va_s0: va_state) (win: bool) (iv: supported_iv_LE) (iv_b: buffer128) (num_bytes len: nat64) (j0_b iv_extra_b hkeys_b: buffer128) (va_sM: va_state) (va_fM: va_fuel) : prop
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_ens_Compute_iv_stdcall (va_b0:va_code) (va_s0:va_state) (win:bool) (iv:supported_iv_LE) (iv_b:buffer128) (num_bytes:nat64) (len:nat64) (j0_b:buffer128) (iv_extra_b:buffer128) (hkeys_b:buffer128) (va_sM:va_state) (va_fM:va_fuel) : prop = (va_req_Compute_iv_stdcall va_b0 va_s0 win iv iv_b num_bytes len j0_b ...
val va_ens_Compute_iv_stdcall (va_b0: va_code) (va_s0: va_state) (win: bool) (iv: supported_iv_LE) (iv_b: buffer128) (num_bytes len: nat64) (j0_b iv_extra_b hkeys_b: buffer128) (va_sM: va_state) (va_fM: va_fuel) : prop let va_ens_Compute_iv_stdcall (va_b0:...
false
null
false
(va_req_Compute_iv_stdcall va_b0 va_s0 win iv iv_b num_bytes len j0_b iv_extra_b hkeys_b /\ va_ensure_total va_b0 va_s0 va_sM va_fM /\ va_get_ok va_sM /\ (let iv_ptr:(va_int_range 0 18446744073709551615) = (if win then va_get_reg64 rRcx va_s0 else va_get_reg64 rRdi va_s0) in let bytes_reg:(va_int_rang...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Prims.bool", "Vale.AES.GCM_s.supported_iv_LE", "Vale.X64.Memory.buffer128", "Vale.X64.Memory.nat64", "Vale.X64.Decls.va_fuel", "Prims.l_and", "Vale.AES.X64.GCMencryptOpt.va_req_Compute_iv_stdcall", "Vale.X64.Decls.va_ensure_total", "Prims.b2t...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_ens_Compute_iv_stdcall (va_b0: va_code) (va_s0: va_state) (win: bool) (iv: supported_iv_LE) (iv_b: buffer128) (num_bytes len: nat64) (j0_b iv_extra_b hkeys_b: buffer128) (va_sM: va_state) (va_fM: va_fuel) : prop
[]
Vale.AES.X64.GCMencryptOpt.va_ens_Compute_iv_stdcall
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
va_b0: Vale.X64.Decls.va_code -> va_s0: Vale.X64.Decls.va_state -> win: Prims.bool -> iv: Vale.AES.GCM_s.supported_iv_LE -> iv_b: Vale.X64.Memory.buffer128 -> num_bytes: Vale.X64.Memory.nat64 -> len: Vale.X64.Memory.nat64 -> j0_b: Vale.X64.Memory.buffer128 -> iv_extra_b: Vale.X64.Me...
{ "end_col": 55, "end_line": 1626, "start_col": 2, "start_line": 1583 }
Prims.Tot
val va_req_Compute_iv_stdcall (va_b0: va_code) (va_s0: va_state) (win: bool) (iv: supported_iv_LE) (iv_b: buffer128) (num_bytes len: nat64) (j0_b iv_extra_b hkeys_b: buffer128) : prop
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_req_Compute_iv_stdcall (va_b0:va_code) (va_s0:va_state) (win:bool) (iv:supported_iv_LE) (iv_b:buffer128) (num_bytes:nat64) (len:nat64) (j0_b:buffer128) (iv_extra_b:buffer128) (hkeys_b:buffer128) : prop = (va_require_total va_b0 (va_code_Compute_iv_stdcall win) va_s0 /\ va_get_ok va_s0 /\ (let (iv_ptr:(...
val va_req_Compute_iv_stdcall (va_b0: va_code) (va_s0: va_state) (win: bool) (iv: supported_iv_LE) (iv_b: buffer128) (num_bytes len: nat64) (j0_b iv_extra_b hkeys_b: buffer128) : prop let va_req_Compute_iv_stdcall (va_b0: va_code) (va_s0: va_state) (win: b...
false
null
false
(va_require_total va_b0 (va_code_Compute_iv_stdcall win) va_s0 /\ va_get_ok va_s0 /\ (let iv_ptr:(va_int_range 0 18446744073709551615) = (if win then va_get_reg64 rRcx va_s0 else va_get_reg64 rRdi va_s0) in let bytes_reg:(va_int_range 0 18446744073709551615) = (if win then va_get_reg64 rRdx va_s0 ...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Prims.bool", "Vale.AES.GCM_s.supported_iv_LE", "Vale.X64.Memory.buffer128", "Vale.X64.Memory.nat64", "Prims.l_and", "Vale.X64.Decls.va_require_total", "Vale.AES.X64.GCMencryptOpt.va_code_Compute_iv_stdcall", "Prims.b2t", "Vale.X64.Decls.va_ge...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_req_Compute_iv_stdcall (va_b0: va_code) (va_s0: va_state) (win: bool) (iv: supported_iv_LE) (iv_b: buffer128) (num_bytes len: nat64) (j0_b iv_extra_b hkeys_b: buffer128) : prop
[]
Vale.AES.X64.GCMencryptOpt.va_req_Compute_iv_stdcall
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
va_b0: Vale.X64.Decls.va_code -> va_s0: Vale.X64.Decls.va_state -> win: Prims.bool -> iv: Vale.AES.GCM_s.supported_iv_LE -> iv_b: Vale.X64.Memory.buffer128 -> num_bytes: Vale.X64.Memory.nat64 -> len: Vale.X64.Memory.nat64 -> j0_b: Vale.X64.Memory.buffer128 -> iv_extra_b: Vale.X64.Me...
{ "end_col": 53, "end_line": 1579, "start_col": 2, "start_line": 1543 }
Prims.Tot
val va_ens_Gcm_blocks_stdcall (va_b0: va_code) (va_s0: va_state) (win: bool) (alg: algorithm) (auth_b: buffer128) (auth_bytes auth_num: nat64) (keys_b iv_b: buffer128) (iv: supported_iv_LE) (hkeys_b abytes_b in128x6_b out128x6_b: buffer128) (len128x6_num: nat6...
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_ens_Gcm_blocks_stdcall (va_b0:va_code) (va_s0:va_state) (win:bool) (alg:algorithm) (auth_b:buffer128) (auth_bytes:nat64) (auth_num:nat64) (keys_b:buffer128) (iv_b:buffer128) (iv:supported_iv_LE) (hkeys_b:buffer128) (abytes_b:buffer128) (in128x6_b:buffer128) (out128x6_b:buffer128) (len128x6_num:nat64) (in12...
val va_ens_Gcm_blocks_stdcall (va_b0: va_code) (va_s0: va_state) (win: bool) (alg: algorithm) (auth_b: buffer128) (auth_bytes auth_num: nat64) (keys_b iv_b: buffer128) (iv: supported_iv_LE) (hkeys_b abytes_b in128x6_b out128x6_b: buffer128) (len128x6_num: nat6...
false
null
false
(va_req_Gcm_blocks_stdcall va_b0 va_s0 win alg auth_b auth_bytes auth_num keys_b iv_b iv hkeys_b abytes_b in128x6_b out128x6_b len128x6_num in128_b out128_b len128_num inout_b plain_num scratch_b tag_b key /\ va_ensure_total va_b0 va_s0 va_sM va_fM /\ va_get_ok va_sM /\ (let auth_ptr:(va_int_range 0 184467440...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Prims.bool", "Vale.AES.AES_common_s.algorithm", "Vale.X64.Memory.buffer128", "Vale.X64.Memory.nat64", "Vale.AES.GCM_s.supported_iv_LE", "FStar.Seq.Base.seq", "Vale.X64.Memory.nat32", "Vale.X64.Decls.va_fuel", "Prims.l_and", "Vale.AES.X64.GC...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_ens_Gcm_blocks_stdcall (va_b0: va_code) (va_s0: va_state) (win: bool) (alg: algorithm) (auth_b: buffer128) (auth_bytes auth_num: nat64) (keys_b iv_b: buffer128) (iv: supported_iv_LE) (hkeys_b abytes_b in128x6_b out128x6_b: buffer128) (len128x6_num: nat6...
[]
Vale.AES.X64.GCMencryptOpt.va_ens_Gcm_blocks_stdcall
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
va_b0: Vale.X64.Decls.va_code -> va_s0: Vale.X64.Decls.va_state -> win: Prims.bool -> alg: Vale.AES.AES_common_s.algorithm -> auth_b: Vale.X64.Memory.buffer128 -> auth_bytes: Vale.X64.Memory.nat64 -> auth_num: Vale.X64.Memory.nat64 -> keys_b: Vale.X64.Memory.buffer128 -> iv_b: Vale....
{ "end_col": 60, "end_line": 979, "start_col": 2, "start_line": 876 }
Prims.Tot
val va_wp_Compute_iv_stdcall (win: bool) (iv: supported_iv_LE) (iv_b: buffer128) (num_bytes len: nat64) (j0_b iv_extra_b hkeys_b: buffer128) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_wp_Compute_iv_stdcall (win:bool) (iv:supported_iv_LE) (iv_b:buffer128) (num_bytes:nat64) (len:nat64) (j0_b:buffer128) (iv_extra_b:buffer128) (hkeys_b:buffer128) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ (let (iv_ptr:(va_int_range 0 18446744073709551615)) = va_if win ...
val va_wp_Compute_iv_stdcall (win: bool) (iv: supported_iv_LE) (iv_b: buffer128) (num_bytes len: nat64) (j0_b iv_extra_b hkeys_b: buffer128) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Compute_iv_stdcall (win: bool) (iv: supported_iv_...
false
null
false
(va_get_ok va_s0 /\ (let iv_ptr:(va_int_range 0 18446744073709551615) = va_if win (fun _ -> va_get_reg64 rRcx va_s0) (fun _ -> va_get_reg64 rRdi va_s0) in let bytes_reg:(va_int_range 0 18446744073709551615) = va_if win (fun _ -> va_get_reg64 rRdx va_s0) (fun _ -> va_get_reg64 rRsi va_s0) in ...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Prims.bool", "Vale.AES.GCM_s.supported_iv_LE", "Vale.X64.Memory.buffer128", "Vale.X64.Memory.nat64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.eq2", "Vale.Def.Words_s.nat64", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRs...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_wp_Compute_iv_stdcall (win: bool) (iv: supported_iv_LE) (iv_b: buffer128) (num_bytes len: nat64) (j0_b iv_extra_b hkeys_b: buffer128) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.AES.X64.GCMencryptOpt.va_wp_Compute_iv_stdcall
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
win: Prims.bool -> iv: Vale.AES.GCM_s.supported_iv_LE -> iv_b: Vale.X64.Memory.buffer128 -> num_bytes: Vale.X64.Memory.nat64 -> len: Vale.X64.Memory.nat64 -> j0_b: Vale.X64.Memory.buffer128 -> iv_extra_b: Vale.X64.Memory.buffer128 -> hkeys_b: Vale.X64.Memory.buffer128 -> va_s0: Vale...
{ "end_col": 78, "end_line": 1803, "start_col": 2, "start_line": 1716 }
Prims.Tot
val va_req_Gcm_blocks_stdcall (va_b0: va_code) (va_s0: va_state) (win: bool) (alg: algorithm) (auth_b: buffer128) (auth_bytes auth_num: nat64) (keys_b iv_b: buffer128) (iv: supported_iv_LE) (hkeys_b abytes_b in128x6_b out128x6_b: buffer128) (len128x6_num: nat6...
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_req_Gcm_blocks_stdcall (va_b0:va_code) (va_s0:va_state) (win:bool) (alg:algorithm) (auth_b:buffer128) (auth_bytes:nat64) (auth_num:nat64) (keys_b:buffer128) (iv_b:buffer128) (iv:supported_iv_LE) (hkeys_b:buffer128) (abytes_b:buffer128) (in128x6_b:buffer128) (out128x6_b:buffer128) (len128x6_num:nat64) (in12...
val va_req_Gcm_blocks_stdcall (va_b0: va_code) (va_s0: va_state) (win: bool) (alg: algorithm) (auth_b: buffer128) (auth_bytes auth_num: nat64) (keys_b iv_b: buffer128) (iv: supported_iv_LE) (hkeys_b abytes_b in128x6_b out128x6_b: buffer128) (len128x6_num: nat6...
false
null
false
(va_require_total va_b0 (va_code_Gcm_blocks_stdcall win alg) va_s0 /\ va_get_ok va_s0 /\ (let auth_ptr:(va_int_range 0 18446744073709551615) = (if win then va_get_reg64 rRcx va_s0 else va_get_reg64 rRdi va_s0) in let auth_num_bytes:(va_int_range 0 18446744073709551615) = (if win then va_get_reg64 ...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Vale.X64.Decls.va_code", "Vale.X64.Decls.va_state", "Prims.bool", "Vale.AES.AES_common_s.algorithm", "Vale.X64.Memory.buffer128", "Vale.X64.Memory.nat64", "Vale.AES.GCM_s.supported_iv_LE", "FStar.Seq.Base.seq", "Vale.X64.Memory.nat32", "Prims.l_and", "Vale.X64.Decls.va_require_total", "Vale.A...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_req_Gcm_blocks_stdcall (va_b0: va_code) (va_s0: va_state) (win: bool) (alg: algorithm) (auth_b: buffer128) (auth_bytes auth_num: nat64) (keys_b iv_b: buffer128) (iv: supported_iv_LE) (hkeys_b abytes_b in128x6_b out128x6_b: buffer128) (len128x6_num: nat6...
[]
Vale.AES.X64.GCMencryptOpt.va_req_Gcm_blocks_stdcall
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
va_b0: Vale.X64.Decls.va_code -> va_s0: Vale.X64.Decls.va_state -> win: Prims.bool -> alg: Vale.AES.AES_common_s.algorithm -> auth_b: Vale.X64.Memory.buffer128 -> auth_bytes: Vale.X64.Memory.nat64 -> auth_num: Vale.X64.Memory.nat64 -> keys_b: Vale.X64.Memory.buffer128 -> iv_b: Vale....
{ "end_col": 43, "end_line": 869, "start_col": 2, "start_line": 732 }
Prims.Tot
val va_wp_Gcm_blocks_stdcall (win: bool) (alg: algorithm) (auth_b: buffer128) (auth_bytes auth_num: nat64) (keys_b iv_b: buffer128) (iv: supported_iv_LE) (hkeys_b abytes_b in128x6_b out128x6_b: buffer128) (len128x6_num: nat64) (in128_b out128_b: buffer128) (le...
[ { "abbrev": false, "full_module": "Vale.Lib.Basic", "short_module": null }, { "abbrev": false, "full_module": "Vale.AES.OptPublic", "short_module": null }, { "abbrev": false, "full_module": "Vale.Lib.Meta", "short_module": null }, { "abbrev": false, "full_modu...
false
let va_wp_Gcm_blocks_stdcall (win:bool) (alg:algorithm) (auth_b:buffer128) (auth_bytes:nat64) (auth_num:nat64) (keys_b:buffer128) (iv_b:buffer128) (iv:supported_iv_LE) (hkeys_b:buffer128) (abytes_b:buffer128) (in128x6_b:buffer128) (out128x6_b:buffer128) (len128x6_num:nat64) (in128_b:buffer128) (out128_b:buffer128...
val va_wp_Gcm_blocks_stdcall (win: bool) (alg: algorithm) (auth_b: buffer128) (auth_bytes auth_num: nat64) (keys_b iv_b: buffer128) (iv: supported_iv_LE) (hkeys_b abytes_b in128x6_b out128x6_b: buffer128) (len128x6_num: nat64) (in128_b out128_b: buffer128) (le...
false
null
false
(va_get_ok va_s0 /\ (let auth_ptr:(va_int_range 0 18446744073709551615) = va_if win (fun _ -> va_get_reg64 rRcx va_s0) (fun _ -> va_get_reg64 rRdi va_s0) in let auth_num_bytes:(va_int_range 0 18446744073709551615) = va_if win (fun _ -> va_get_reg64 rRdx va_s0) (fun _ -> va_get_reg64 rRsi va_s0) ...
{ "checked_file": "Vale.AES.X64.GCMencryptOpt.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.Stack.fsti.checked", "Vale.X64.QuickCodes.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Ma...
[ "total" ]
[ "Prims.bool", "Vale.AES.AES_common_s.algorithm", "Vale.X64.Memory.buffer128", "Vale.X64.Memory.nat64", "Vale.AES.GCM_s.supported_iv_LE", "FStar.Seq.Base.seq", "Vale.X64.Memory.nat32", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Vale.X64.C...
[]
module Vale.AES.X64.GCMencryptOpt open Vale.Def.Prop_s open Vale.Def.Opaque_s open FStar.Seq open Vale.Def.Words_s open Vale.Def.Words.Seq_s open Vale.Def.Types_s open Vale.Arch.Types open Vale.Arch.HeapImpl open Vale.AES.AES_s open Vale.AES.GCTR_s open Vale.AES.GCTR open Vale.AES.GCM open Vale.AES.GHash_s open Vale.AE...
false
true
Vale.AES.X64.GCMencryptOpt.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_wp_Gcm_blocks_stdcall (win: bool) (alg: algorithm) (auth_b: buffer128) (auth_bytes auth_num: nat64) (keys_b iv_b: buffer128) (iv: supported_iv_LE) (hkeys_b abytes_b in128x6_b out128x6_b: buffer128) (len128x6_num: nat64) (in128_b out128_b: buffer128) (le...
[]
Vale.AES.X64.GCMencryptOpt.va_wp_Gcm_blocks_stdcall
{ "file_name": "obj/Vale.AES.X64.GCMencryptOpt.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
win: Prims.bool -> alg: Vale.AES.AES_common_s.algorithm -> auth_b: Vale.X64.Memory.buffer128 -> auth_bytes: Vale.X64.Memory.nat64 -> auth_num: Vale.X64.Memory.nat64 -> keys_b: Vale.X64.Memory.buffer128 -> iv_b: Vale.X64.Memory.buffer128 -> iv: Vale.AES.GCM_s.supported_iv_LE -> hkeys...
{ "end_col": 21, "end_line": 1492, "start_col": 2, "start_line": 1235 }
Prims.Tot
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let vale_heap = M.vale_heap
let vale_heap =
false
null
false
M.vale_heap
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Memory.vale_heap" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val vale_heap : Type
[]
Vale.PPC64LE.Decls.vale_heap
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type
{ "end_col": 34, "end_line": 26, "start_col": 23, "start_line": 26 }
Prims.Tot
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let heaplet_id = M.heaplet_id
let heaplet_id =
false
null
false
M.heaplet_id
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Memory.heaplet_id" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val heaplet_id : Type0
[]
Vale.PPC64LE.Decls.heaplet_id
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 36, "end_line": 28, "start_col": 24, "start_line": 28 }
Prims.Tot
val va_get_cr0 (s: va_state) : cr0_t
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_get_cr0 (s:va_state) : cr0_t = s.cr0
val va_get_cr0 (s: va_state) : cr0_t let va_get_cr0 (s: va_state) : cr0_t =
false
null
false
s.cr0
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Decls.va_state", "Vale.PPC64LE.Machine_s.__proj__Mkstate__item__cr0", "Vale.PPC64LE.Machine_s.cr0_t" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_get_cr0 (s: va_state) : cr0_t
[]
Vale.PPC64LE.Decls.va_get_cr0
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
s: Vale.PPC64LE.Decls.va_state -> Vale.PPC64LE.Machine_s.cr0_t
{ "end_col": 62, "end_line": 144, "start_col": 57, "start_line": 144 }
Prims.Tot
val va_get_stack (s: va_state) : SI.vale_stack
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_get_stack (s:va_state) : SI.vale_stack = VSS.stack_from_s s.ms_stack
val va_get_stack (s: va_state) : SI.vale_stack let va_get_stack (s: va_state) : SI.vale_stack =
false
null
false
VSS.stack_from_s s.ms_stack
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Decls.va_state", "Vale.PPC64LE.Stack_Sems.stack_from_s", "Vale.PPC64LE.Machine_s.__proj__Mkstate__item__ms_stack", "Vale.PPC64LE.Stack_i.vale_stack" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_get_stack (s: va_state) : SI.vale_stack
[]
Vale.PPC64LE.Decls.va_get_stack
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
s: Vale.PPC64LE.Decls.va_state -> Vale.PPC64LE.Stack_i.vale_stack
{ "end_col": 94, "end_line": 151, "start_col": 67, "start_line": 151 }
FStar.Pervasives.Lemma
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_reveal_opaque (s:string) = norm_spec [zeta; delta_only [s]]
let va_reveal_opaque (s: string) =
false
null
true
norm_spec [zeta; delta_only [s]]
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "lemma" ]
[ "Prims.string", "FStar.Pervasives.norm_spec", "Prims.Cons", "FStar.Pervasives.norm_step", "FStar.Pervasives.zeta", "FStar.Pervasives.delta_only", "Prims.Nil", "Prims.unit", "Prims.l_True", "Prims.squash", "Prims.eq2", "FStar.Pervasives.norm", "FStar.Pervasives.pattern" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
false
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_reveal_opaque : s: Prims.string -> x: _ -> FStar.Pervasives.Lemma (ensures FStar.Pervasives.norm [FStar.Pervasives.zeta; FStar.Pervasives.delta_only [s]] x == x)
[]
Vale.PPC64LE.Decls.va_reveal_opaque
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
s: Prims.string -> x: _ -> FStar.Pervasives.Lemma (ensures FStar.Pervasives.norm [FStar.Pervasives.zeta; FStar.Pervasives.delta_only [s]] x == x)
{ "end_col": 66, "end_line": 44, "start_col": 34, "start_line": 44 }
Prims.GTot
val buffer8_as_seq (m: vale_heap) (b: M.buffer8) : GTot (Seq.seq nat8)
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let buffer8_as_seq (m:vale_heap) (b:M.buffer8) : GTot (Seq.seq nat8) = M.buffer_as_seq m b
val buffer8_as_seq (m: vale_heap) (b: M.buffer8) : GTot (Seq.seq nat8) let buffer8_as_seq (m: vale_heap) (b: M.buffer8) : GTot (Seq.seq nat8) =
false
null
false
M.buffer_as_seq m b
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "sometrivial" ]
[ "Vale.PPC64LE.Decls.vale_heap", "Vale.PPC64LE.Memory.buffer8", "Vale.PPC64LE.Memory.buffer_as_seq", "Vale.PPC64LE.Memory.vuint8", "FStar.Seq.Base.seq", "Vale.PPC64LE.Machine_s.nat8" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
false
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val buffer8_as_seq (m: vale_heap) (b: M.buffer8) : GTot (Seq.seq nat8)
[]
Vale.PPC64LE.Decls.buffer8_as_seq
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
m: Vale.PPC64LE.Decls.vale_heap -> b: Vale.PPC64LE.Memory.buffer8 -> Prims.GTot (FStar.Seq.Base.seq Vale.PPC64LE.Machine_s.nat8)
{ "end_col": 97, "end_line": 83, "start_col": 78, "start_line": 83 }
Prims.Tot
val va_opr_code_Mem64 (h: heaplet_id) (r: reg) (n: int) (t: taint) : tmaddr
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_opr_code_Mem64 (h:heaplet_id) (r:reg) (n:int) (t:taint) : tmaddr = ({ address=r; offset=n }, t)
val va_opr_code_Mem64 (h: heaplet_id) (r: reg) (n: int) (t: taint) : tmaddr let va_opr_code_Mem64 (h: heaplet_id) (r: reg) (n: int) (t: taint) : tmaddr =
false
null
false
({ address = r; offset = n }, t)
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Decls.heaplet_id", "Vale.PPC64LE.Machine_s.reg", "Prims.int", "Vale.Arch.HeapTypes_s.taint", "FStar.Pervasives.Native.Mktuple2", "Vale.PPC64LE.Machine_s.maddr", "Vale.PPC64LE.Machine_s.Mkmaddr", "Vale.PPC64LE.Machine_s.tmaddr" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_opr_code_Mem64 (h: heaplet_id) (r: reg) (n: int) (t: taint) : tmaddr
[]
Vale.PPC64LE.Decls.va_opr_code_Mem64
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
h: Vale.PPC64LE.Decls.heaplet_id -> r: Vale.PPC64LE.Machine_s.reg -> n: Prims.int -> t: Vale.Arch.HeapTypes_s.taint -> Vale.PPC64LE.Machine_s.tmaddr
{ "end_col": 30, "end_line": 140, "start_col": 2, "start_line": 140 }
Prims.Tot
val valid_stack (m: maddr) (t: taint) (s: state) : prop0
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let valid_stack (m:maddr) (t:taint) (s:state) : prop0 = SI.valid_taint_stack64 (eval_maddr m s) t s.ms_stackTaint
val valid_stack (m: maddr) (t: taint) (s: state) : prop0 let valid_stack (m: maddr) (t: taint) (s: state) : prop0 =
false
null
false
SI.valid_taint_stack64 (eval_maddr m s) t s.ms_stackTaint
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Machine_s.maddr", "Vale.Arch.HeapTypes_s.taint", "Vale.PPC64LE.State.state", "Vale.PPC64LE.Stack_i.valid_taint_stack64", "Vale.PPC64LE.State.eval_maddr", "Vale.PPC64LE.Machine_s.__proj__Mkstate__item__ms_stackTaint", "Vale.Def.Prop_s.prop0" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val valid_stack (m: maddr) (t: taint) (s: state) : prop0
[]
Vale.PPC64LE.Decls.valid_stack
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
m: Vale.PPC64LE.Machine_s.maddr -> t: Vale.Arch.HeapTypes_s.taint -> s: Vale.PPC64LE.State.state -> Vale.Def.Prop_s.prop0
{ "end_col": 59, "end_line": 124, "start_col": 2, "start_line": 124 }
Prims.Tot
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_hd = Cons?.hd
let va_hd =
false
null
false
Cons?.hd
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Prims.__proj__Cons__item__hd", "Prims.list", "Prims.b2t", "Prims.uu___is_Cons" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
false
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_hd : projectee: _: Prims.list _ {Cons? _} -> _
[]
Vale.PPC64LE.Decls.va_hd
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
projectee: _: Prims.list _ {Cons? _} -> _
{ "end_col": 27, "end_line": 38, "start_col": 19, "start_line": 38 }
Prims.Tot
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_codes = list va_code
let va_codes =
false
null
false
list va_code
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Prims.list", "Vale.PPC64LE.Decls.va_code" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_codes : Type0
[]
Vale.PPC64LE.Decls.va_codes
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 34, "end_line": 57, "start_col": 22, "start_line": 57 }
Prims.Tot
val va_op_vec_opr_vec (v: vec) : vec_opr
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_op_vec_opr_vec (v:vec) : vec_opr = v
val va_op_vec_opr_vec (v: vec) : vec_opr let va_op_vec_opr_vec (v: vec) : vec_opr =
false
null
false
v
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Machine_s.vec", "Vale.PPC64LE.Decls.vec_opr" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_op_vec_opr_vec (v: vec) : vec_opr
[]
Vale.PPC64LE.Decls.va_op_vec_opr_vec
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
v: Vale.PPC64LE.Machine_s.vec -> Vale.PPC64LE.Decls.vec_opr
{ "end_col": 62, "end_line": 133, "start_col": 61, "start_line": 133 }
Prims.Tot
val va_update_ok (sM sK: va_state) : va_state
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_update_ok (sM:va_state) (sK:va_state) : va_state = va_upd_ok sM.ok sK
val va_update_ok (sM sK: va_state) : va_state let va_update_ok (sM sK: va_state) : va_state =
false
null
false
va_upd_ok sM.ok sK
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Decls.va_state", "Vale.PPC64LE.Decls.va_upd_ok", "Vale.PPC64LE.Machine_s.__proj__Mkstate__item__ok" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_update_ok (sM sK: va_state) : va_state
[]
Vale.PPC64LE.Decls.va_update_ok
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
sM: Vale.PPC64LE.Decls.va_state -> sK: Vale.PPC64LE.Decls.va_state -> Vale.PPC64LE.Decls.va_state
{ "end_col": 95, "end_line": 185, "start_col": 77, "start_line": 185 }
Prims.GTot
val s64 (m: vale_heap) (b: M.buffer64) : GTot (Seq.seq nat64)
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let s64 (m:vale_heap) (b:M.buffer64) : GTot (Seq.seq nat64) = buffer64_as_seq m b
val s64 (m: vale_heap) (b: M.buffer64) : GTot (Seq.seq nat64) let s64 (m: vale_heap) (b: M.buffer64) : GTot (Seq.seq nat64) =
false
null
false
buffer64_as_seq m b
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "sometrivial" ]
[ "Vale.PPC64LE.Decls.vale_heap", "Vale.PPC64LE.Memory.buffer64", "Vale.PPC64LE.Decls.buffer64_as_seq", "FStar.Seq.Base.seq", "Vale.PPC64LE.Machine_s.nat64" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
false
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val s64 (m: vale_heap) (b: M.buffer64) : GTot (Seq.seq nat64)
[]
Vale.PPC64LE.Decls.s64
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
m: Vale.PPC64LE.Decls.vale_heap -> b: Vale.PPC64LE.Memory.buffer64 -> Prims.GTot (FStar.Seq.Base.seq Vale.PPC64LE.Machine_s.nat64)
{ "end_col": 88, "end_line": 85, "start_col": 69, "start_line": 85 }
Prims.Tot
val va_upd_xer (xer: xer_t) (s: state) : state
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_upd_xer (xer:xer_t) (s:state) : state = { s with xer = xer }
val va_upd_xer (xer: xer_t) (s: state) : state let va_upd_xer (xer: xer_t) (s: state) : state =
false
null
false
{ s with xer = xer }
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Machine_s.xer_t", "Vale.PPC64LE.State.state", "Vale.PPC64LE.Machine_s.Mkstate", "Vale.PPC64LE.Machine_s.__proj__Mkstate__item__ok", "Vale.PPC64LE.Machine_s.__proj__Mkstate__item__regs", "Vale.PPC64LE.Machine_s.__proj__Mkstate__item__vecs", "Vale.PPC64LE.Machine_s.__proj__Mkstate__item__cr0...
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_upd_xer (xer: xer_t) (s: state) : state
[]
Vale.PPC64LE.Decls.va_upd_xer
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
xer: Vale.PPC64LE.Machine_s.xer_t -> s: Vale.PPC64LE.State.state -> Vale.PPC64LE.State.state
{ "end_col": 77, "end_line": 174, "start_col": 61, "start_line": 174 }
Prims.Tot
val va_op_cmp_reg (r: reg) : cmp_opr
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_op_cmp_reg (r:reg) : cmp_opr = CReg r
val va_op_cmp_reg (r: reg) : cmp_opr let va_op_cmp_reg (r: reg) : cmp_opr =
false
null
false
CReg r
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Machine_s.reg", "Vale.PPC64LE.Machine_s.CReg", "Vale.PPC64LE.Machine_s.cmp_opr" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_op_cmp_reg (r: reg) : cmp_opr
[]
Vale.PPC64LE.Decls.va_op_cmp_reg
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
r: Vale.PPC64LE.Machine_s.reg -> Vale.PPC64LE.Machine_s.cmp_opr
{ "end_col": 63, "end_line": 134, "start_col": 57, "start_line": 134 }
Prims.Tot
val va_subscript (#a: eqtype) (#b: Type) (x: Map.t a b) (y: a) : Tot b
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_subscript (#a:eqtype) (#b:Type) (x:Map.t a b) (y:a) : Tot b = Map.sel x y
val va_subscript (#a: eqtype) (#b: Type) (x: Map.t a b) (y: a) : Tot b let va_subscript (#a: eqtype) (#b: Type) (x: Map.t a b) (y: a) : Tot b =
false
null
false
Map.sel x y
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Prims.eqtype", "FStar.Map.t", "FStar.Map.sel" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
false
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_subscript (#a: eqtype) (#b: Type) (x: Map.t a b) (y: a) : Tot b
[]
Vale.PPC64LE.Decls.va_subscript
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
x: FStar.Map.t a b -> y: a -> b
{ "end_col": 87, "end_line": 36, "start_col": 76, "start_line": 36 }
Prims.Tot
val va_op_heaplet_mem_heaplet (h: heaplet_id) : heaplet_id
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_op_heaplet_mem_heaplet (h:heaplet_id) : heaplet_id = h
val va_op_heaplet_mem_heaplet (h: heaplet_id) : heaplet_id let va_op_heaplet_mem_heaplet (h: heaplet_id) : heaplet_id =
false
null
false
h
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Decls.heaplet_id" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_op_heaplet_mem_heaplet (h: heaplet_id) : heaplet_id
[]
Vale.PPC64LE.Decls.va_op_heaplet_mem_heaplet
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
h: Vale.PPC64LE.Decls.heaplet_id -> Vale.PPC64LE.Decls.heaplet_id
{ "end_col": 80, "end_line": 136, "start_col": 79, "start_line": 136 }
Prims.Tot
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let vec_opr = vec
let vec_opr =
false
null
false
vec
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Machine_s.vec" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val vec_opr : Type0
[]
Vale.PPC64LE.Decls.vec_opr
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 24, "end_line": 64, "start_col": 21, "start_line": 64 }
Prims.GTot
val va_eval_vec_opr (s: va_state) (v: vec_opr) : GTot quad32
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_eval_vec_opr (s:va_state) (v:vec_opr) : GTot quad32 = eval_vec v s
val va_eval_vec_opr (s: va_state) (v: vec_opr) : GTot quad32 let va_eval_vec_opr (s: va_state) (v: vec_opr) : GTot quad32 =
false
null
false
eval_vec v s
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "sometrivial" ]
[ "Vale.PPC64LE.Decls.va_state", "Vale.PPC64LE.Decls.vec_opr", "Vale.PPC64LE.State.eval_vec", "Vale.PPC64LE.Machine_s.quad32" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
false
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_eval_vec_opr (s: va_state) (v: vec_opr) : GTot quad32
[]
Vale.PPC64LE.Decls.va_eval_vec_opr
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
s: Vale.PPC64LE.Decls.va_state -> v: Vale.PPC64LE.Decls.vec_opr -> Prims.GTot Vale.PPC64LE.Machine_s.quad32
{ "end_col": 102, "end_line": 159, "start_col": 90, "start_line": 159 }
Prims.GTot
val buffer128_as_seq (m: vale_heap) (b: M.buffer128) : GTot (Seq.seq quad32)
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let buffer128_as_seq (m:vale_heap) (b:M.buffer128) : GTot (Seq.seq quad32) = M.buffer_as_seq m b
val buffer128_as_seq (m: vale_heap) (b: M.buffer128) : GTot (Seq.seq quad32) let buffer128_as_seq (m: vale_heap) (b: M.buffer128) : GTot (Seq.seq quad32) =
false
null
false
M.buffer_as_seq m b
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "sometrivial" ]
[ "Vale.PPC64LE.Decls.vale_heap", "Vale.PPC64LE.Memory.buffer128", "Vale.PPC64LE.Memory.buffer_as_seq", "Vale.PPC64LE.Memory.vuint128", "FStar.Seq.Base.seq", "Vale.PPC64LE.Machine_s.quad32" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
false
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val buffer128_as_seq (m: vale_heap) (b: M.buffer128) : GTot (Seq.seq quad32)
[]
Vale.PPC64LE.Decls.buffer128_as_seq
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
m: Vale.PPC64LE.Decls.vale_heap -> b: Vale.PPC64LE.Memory.buffer128 -> Prims.GTot (FStar.Seq.Base.seq Vale.PPC64LE.Machine_s.quad32)
{ "end_col": 103, "end_line": 86, "start_col": 84, "start_line": 86 }
Prims.Tot
val valid_src_addr (#t: M.base_typ) (m: vale_heap) (b: M.buffer t) (i: int) : prop0
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let valid_src_addr (#t:M.base_typ) (m:vale_heap) (b:M.buffer t) (i:int) : prop0 = M.valid_buffer_read m b i
val valid_src_addr (#t: M.base_typ) (m: vale_heap) (b: M.buffer t) (i: int) : prop0 let valid_src_addr (#t: M.base_typ) (m: vale_heap) (b: M.buffer t) (i: int) : prop0 =
false
null
false
M.valid_buffer_read m b i
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.Arch.HeapTypes_s.base_typ", "Vale.PPC64LE.Decls.vale_heap", "Vale.PPC64LE.Memory.buffer", "Prims.int", "Vale.PPC64LE.Memory.valid_buffer_read", "Vale.Def.Prop_s.prop0" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
false
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val valid_src_addr (#t: M.base_typ) (m: vale_heap) (b: M.buffer t) (i: int) : prop0
[]
Vale.PPC64LE.Decls.valid_src_addr
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
m: Vale.PPC64LE.Decls.vale_heap -> b: Vale.PPC64LE.Memory.buffer t -> i: Prims.int -> Vale.Def.Prop_s.prop0
{ "end_col": 114, "end_line": 88, "start_col": 89, "start_line": 88 }
Prims.GTot
val buffer64_as_seq (m: vale_heap) (b: M.buffer64) : GTot (Seq.seq nat64)
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let buffer64_as_seq (m:vale_heap) (b:M.buffer64) : GTot (Seq.seq nat64) = M.buffer_as_seq m b
val buffer64_as_seq (m: vale_heap) (b: M.buffer64) : GTot (Seq.seq nat64) let buffer64_as_seq (m: vale_heap) (b: M.buffer64) : GTot (Seq.seq nat64) =
false
null
false
M.buffer_as_seq m b
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "sometrivial" ]
[ "Vale.PPC64LE.Decls.vale_heap", "Vale.PPC64LE.Memory.buffer64", "Vale.PPC64LE.Memory.buffer_as_seq", "Vale.PPC64LE.Memory.vuint64", "FStar.Seq.Base.seq", "Vale.PPC64LE.Machine_s.nat64" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
false
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val buffer64_as_seq (m: vale_heap) (b: M.buffer64) : GTot (Seq.seq nat64)
[]
Vale.PPC64LE.Decls.buffer64_as_seq
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
m: Vale.PPC64LE.Decls.vale_heap -> b: Vale.PPC64LE.Memory.buffer64 -> Prims.GTot (FStar.Seq.Base.seq Vale.PPC64LE.Machine_s.nat64)
{ "end_col": 100, "end_line": 84, "start_col": 81, "start_line": 84 }
Prims.Tot
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_is_src_vec_opr (v:vec_opr) (s:va_state) = True
let va_is_src_vec_opr (v: vec_opr) (s: va_state) =
false
null
false
True
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Decls.vec_opr", "Vale.PPC64LE.Decls.va_state", "Prims.l_True", "Prims.logical" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_is_src_vec_opr : v: Vale.PPC64LE.Decls.vec_opr -> s: Vale.PPC64LE.Decls.va_state -> Prims.logical
[]
Vale.PPC64LE.Decls.va_is_src_vec_opr
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
v: Vale.PPC64LE.Decls.vec_opr -> s: Vale.PPC64LE.Decls.va_state -> Prims.logical
{ "end_col": 72, "end_line": 167, "start_col": 68, "start_line": 167 }
Prims.Tot
val va_get_vec (x: vec) (s: va_state) : quad32
[ { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_Sems", "short_module": "VSS" }, { "abbrev": true, "full_module": "Vale.Lib.Map16", "short_module": "Map16" }, { "abbrev": true, "full_module": "Vale.PPC64LE.Stack_i", "short_module": "SI" }, { "abbrev": true, ...
false
let va_get_vec (x:vec) (s:va_state) : quad32 = eval_vec x s
val va_get_vec (x: vec) (s: va_state) : quad32 let va_get_vec (x: vec) (s: va_state) : quad32 =
false
null
false
eval_vec x s
{ "checked_file": "Vale.PPC64LE.Decls.fsti.checked", "dependencies": [ "Vale.PPC64LE.State.fsti.checked", "Vale.PPC64LE.Stack_Sems.fsti.checked", "Vale.PPC64LE.Stack_i.fsti.checked", "Vale.PPC64LE.Memory.fsti.checked", "Vale.PPC64LE.Machine_s.fst.checked", "Vale.Lib.Map16.fsti.checked", ...
[ "total" ]
[ "Vale.PPC64LE.Machine_s.vec", "Vale.PPC64LE.Decls.va_state", "Vale.PPC64LE.State.eval_vec", "Vale.PPC64LE.Machine_s.quad32" ]
[]
module Vale.PPC64LE.Decls // This interface should hide all of Semantics_s. // (It should not refer to Semantics_s, directly or indirectly.) // It should not refer to StateLemmas_i or Print_s, // because they refer to Semantics_s. // Regs_i and State_i are ok, because they do not refer to Semantics_s. open FStar.Mul ...
false
true
Vale.PPC64LE.Decls.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 0, "max_fuel": 1, "max_ifuel": 1, "no_plugins": false, "no_smt": false, "no_tactics": false, "quake_hi": 1, "quake_keep": false, "quake_lo": 1, "retry": false, "reuse_hint_for": null, "smtencoding_el...
null
val va_get_vec (x: vec) (s: va_state) : quad32
[]
Vale.PPC64LE.Decls.va_get_vec
{ "file_name": "vale/code/arch/ppc64le/Vale.PPC64LE.Decls.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
x: Vale.PPC64LE.Machine_s.vec -> s: Vale.PPC64LE.Decls.va_state -> Vale.PPC64LE.Machine_s.quad32
{ "end_col": 78, "end_line": 147, "start_col": 66, "start_line": 147 }