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
FStar.Pervasives.Lemma
val repeati_update1: a:alg -> b:block_s a -> d:bytes{length d + (size_block a) <= max_limb a} -> nb:nat{nb > 0 /\ nb <= length (b `Seq.append` d) / size_block a} -> s:state a -> Lemma ( repeati nb (blake2_update1 a 0 (b `Seq.append` d)) s == repeati (nb - 1) (blake2_update1 a (size_block a) d) (bl...
[ { "abbrev": true, "full_module": "Lib.UpdateMulti", "short_module": "UpdateMulti" }, { "abbrev": true, "full_module": "Lib.Sequence.Lemmas", "short_module": "Lems" }, { "abbrev": false, "full_module": "Lib.LoopCombinators", "short_module": null }, { "abbrev": fals...
false
let repeati_update1 a b d nb s = let f = blake2_update1 a 0 (b `Seq.append` d) in let f' = blake2_update1 a (size_block a) d in let s' = blake2_update_block a false (size_block a) b s in Classical.forall_intro_2 (lemma_update1_shift a b d); assert (forall i s. f (i + 1) s == f' i s); Lems.repeati_right_shif...
val repeati_update1: a:alg -> b:block_s a -> d:bytes{length d + (size_block a) <= max_limb a} -> nb:nat{nb > 0 /\ nb <= length (b `Seq.append` d) / size_block a} -> s:state a -> Lemma ( repeati nb (blake2_update1 a 0 (b `Seq.append` d)) s == repeati (nb - 1) (blake2_update1 a (size_block a) d) (bl...
false
null
true
let f = blake2_update1 a 0 (b `Seq.append` d) in let f' = blake2_update1 a (size_block a) d in let s' = blake2_update_block a false (size_block a) b s in Classical.forall_intro_2 (lemma_update1_shift a b d); assert (forall i s. f (i + 1) s == f' i s); Lems.repeati_right_shift (nb - 1) f' f s; assert ((get_blocki a (b `...
{ "checked_file": "Spec.Blake2.Alternative.fst.checked", "dependencies": [ "Spec.Blake2.fst.checked", "prims.fst.checked", "Lib.UpdateMulti.fst.checked", "Lib.Sequence.Lemmas.fsti.checked", "Lib.Sequence.fsti.checked", "Lib.RawIntTypes.fsti.checked", "Lib.LoopCombinators.fsti.checked", ...
[ "lemma" ]
[ "Spec.Blake2.alg", "Spec.Blake2.block_s", "Lib.ByteSequence.bytes", "Prims.b2t", "Prims.op_LessThanOrEqual", "Prims.op_Addition", "Lib.Sequence.length", "Lib.IntTypes.uint_t", "Lib.IntTypes.U8", "Lib.IntTypes.SEC", "Spec.Blake2.size_block", "Spec.Blake2.max_limb", "Prims.nat", "Prims.l_and...
[]
module Spec.Blake2.Alternative open Spec.Blake2 open FStar.Mul open Lib.IntTypes open Lib.RawIntTypes open Lib.Sequence open Lib.ByteSequence open Lib.LoopCombinators module Lems = Lib.Sequence.Lemmas module UpdateMulti = Lib.UpdateMulti #set-options "--fuel 0 --ifuel 0 --z3rlimit 50" val lemma_shift_update_last: ...
false
false
Spec.Blake2.Alternative.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "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 repeati_update1: a:alg -> b:block_s a -> d:bytes{length d + (size_block a) <= max_limb a} -> nb:nat{nb > 0 /\ nb <= length (b `Seq.append` d) / size_block a} -> s:state a -> Lemma ( repeati nb (blake2_update1 a 0 (b `Seq.append` d)) s == repeati (nb - 1) (blake2_update1 a (size_block a) d) (bl...
[]
Spec.Blake2.Alternative.repeati_update1
{ "file_name": "specs/lemmas/Spec.Blake2.Alternative.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Blake2.alg -> b: Spec.Blake2.block_s a -> d: Lib.ByteSequence.bytes {Lib.Sequence.length d + Spec.Blake2.size_block a <= Spec.Blake2.max_limb a} -> nb: Prims.nat {nb > 0 /\ nb <= Lib.Sequence.length (FStar.Seq.Base.append b d) / Spec.Blake2.size_block a} -> s: Sp...
{ "end_col": 22, "end_line": 65, "start_col": 32, "start_line": 57 }
FStar.Pervasives.Lemma
val lemma_spec_equivalence_update: a:alg -> kk:size_nat{kk <= max_key a} -> k:lbytes kk -> d:bytes{if kk = 0 then length d <= max_limb a else length d + (size_block a) <= max_limb a} -> s:state a -> Lemma (blake2_update a kk k d s `Seq.equal` blake2_update' a kk k d s)
[ { "abbrev": true, "full_module": "Lib.UpdateMulti", "short_module": "UpdateMulti" }, { "abbrev": true, "full_module": "Lib.Sequence.Lemmas", "short_module": "Lems" }, { "abbrev": false, "full_module": "Lib.LoopCombinators", "short_module": null }, { "abbrev": fals...
false
let lemma_spec_equivalence_update a kk k d s = let ll = length d in let key_block: bytes = if kk > 0 then blake2_key_block a kk k else Seq.empty in if kk = 0 then begin assert (key_block `Seq.equal` Seq.empty); assert ((key_block `Seq.append` d) `Seq.equal` d); () end else if ll = 0 then let (nb...
val lemma_spec_equivalence_update: a:alg -> kk:size_nat{kk <= max_key a} -> k:lbytes kk -> d:bytes{if kk = 0 then length d <= max_limb a else length d + (size_block a) <= max_limb a} -> s:state a -> Lemma (blake2_update a kk k d s `Seq.equal` blake2_update' a kk k d s) let lemma_spec_equivalence_update a ...
false
null
true
let ll = length d in let key_block:bytes = if kk > 0 then blake2_key_block a kk k else Seq.empty in if kk = 0 then (assert (key_block `Seq.equal` Seq.empty); assert ((key_block `Seq.append` d) `Seq.equal` d); ()) else if ll = 0 then let nb, rem = split a (length (blake2_key_block a kk k)) in calc ...
{ "checked_file": "Spec.Blake2.Alternative.fst.checked", "dependencies": [ "Spec.Blake2.fst.checked", "prims.fst.checked", "Lib.UpdateMulti.fst.checked", "Lib.Sequence.Lemmas.fsti.checked", "Lib.Sequence.fsti.checked", "Lib.RawIntTypes.fsti.checked", "Lib.LoopCombinators.fsti.checked", ...
[ "lemma" ]
[ "Spec.Blake2.alg", "Lib.IntTypes.size_nat", "Prims.b2t", "Prims.op_LessThanOrEqual", "Spec.Blake2.max_key", "Lib.ByteSequence.lbytes", "Lib.ByteSequence.bytes", "Prims.op_Equality", "Prims.int", "Lib.Sequence.length", "Lib.IntTypes.uint_t", "Lib.IntTypes.U8", "Lib.IntTypes.SEC", "Spec.Blak...
[]
module Spec.Blake2.Alternative open Spec.Blake2 open FStar.Mul open Lib.IntTypes open Lib.RawIntTypes open Lib.Sequence open Lib.ByteSequence open Lib.LoopCombinators module Lems = Lib.Sequence.Lemmas module UpdateMulti = Lib.UpdateMulti #set-options "--fuel 0 --ifuel 0 --z3rlimit 50" val lemma_shift_update_last: ...
false
false
Spec.Blake2.Alternative.fst
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "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 lemma_spec_equivalence_update: a:alg -> kk:size_nat{kk <= max_key a} -> k:lbytes kk -> d:bytes{if kk = 0 then length d <= max_limb a else length d + (size_block a) <= max_limb a} -> s:state a -> Lemma (blake2_update a kk k d s `Seq.equal` blake2_update' a kk k d s)
[]
Spec.Blake2.Alternative.lemma_spec_equivalence_update
{ "file_name": "specs/lemmas/Spec.Blake2.Alternative.fst", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Blake2.alg -> kk: Lib.IntTypes.size_nat{kk <= Spec.Blake2.max_key a} -> k: Lib.ByteSequence.lbytes kk -> d: Lib.ByteSequence.bytes { (match kk = 0 with | true -> Lib.Sequence.length d <= Spec.Blake2.max_limb a | _ -> Lib.Sequence.length d + Spec.Blake2.size...
{ "end_col": 5, "end_line": 136, "start_col": 46, "start_line": 100 }
Prims.Tot
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let cipher_max_length (a:supported_alg) = max_length a + tag_length a
let cipher_max_length (a: supported_alg) =
false
null
false
max_length a + tag_length a
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.supported_alg", "FStar.Integers.op_Plus", "FStar.Integers.Signed", "FStar.Integers.Winfinite", "Spec.Agile.AEAD.max_length", "Spec.Agile.AEAD.tag_length", "FStar.Integers.int_t" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
true
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 cipher_max_length : a: Spec.Agile.AEAD.supported_alg -> FStar.Integers.int_t (FStar.Integers.Signed FStar.Integers.Winfinite)
[]
Spec.Agile.AEAD.cipher_max_length
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Agile.AEAD.supported_alg -> FStar.Integers.int_t (FStar.Integers.Signed FStar.Integers.Winfinite)
{ "end_col": 69, "end_line": 83, "start_col": 42, "start_line": 83 }
Prims.Tot
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let supported_alg = a:alg { is_supported_alg a }
let supported_alg =
false
null
false
a: alg{is_supported_alg a}
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.alg", "Prims.b2t", "Spec.Agile.AEAD.is_supported_alg" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
true
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 supported_alg : Type0
[]
Spec.Agile.AEAD.supported_alg
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 48, "end_line": 30, "start_col": 20, "start_line": 30 }
Prims.Tot
val is_supported_alg (a: alg) : bool
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let is_supported_alg (a: alg): bool = match a with | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 -> true | _ -> false
val is_supported_alg (a: alg) : bool let is_supported_alg (a: alg) : bool =
false
null
false
match a with | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 -> true | _ -> false
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.alg", "Prims.bool" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
true
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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_supported_alg (a: alg) : bool
[]
Spec.Agile.AEAD.is_supported_alg
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Agile.AEAD.alg -> Prims.bool
{ "end_col": 14, "end_line": 28, "start_col": 2, "start_line": 24 }
Prims.Tot
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let iv a = s:S.seq uint8 { iv_length a (S.length s) }
let iv a =
false
null
false
s: S.seq uint8 {iv_length a (S.length s)}
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.supported_alg", "FStar.Seq.Base.seq", "Spec.Agile.AEAD.uint8", "Spec.Agile.AEAD.iv_length", "FStar.Seq.Base.length" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
true
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 iv : a: Spec.Agile.AEAD.supported_alg -> Type0
[]
Spec.Agile.AEAD.iv
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Agile.AEAD.supported_alg -> Type0
{ "end_col": 53, "end_line": 93, "start_col": 11, "start_line": 93 }
Prims.Tot
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let cipher (a: supported_alg) = s:S.seq uint8 { S.length s >= tag_length a /\ S.length s <= cipher_max_length a }
let cipher (a: supported_alg) =
false
null
false
s: S.seq uint8 {S.length s >= tag_length a /\ S.length s <= cipher_max_length a}
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.supported_alg", "FStar.Seq.Base.seq", "Spec.Agile.AEAD.uint8", "Prims.l_and", "Prims.b2t", "FStar.Integers.op_Greater_Equals", "FStar.Integers.Signed", "FStar.Integers.Winfinite", "FStar.Seq.Base.length", "Spec.Agile.AEAD.tag_length", "FStar.Integers.op_Less_Equals", "Spec.Agi...
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
true
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 cipher : a: Spec.Agile.AEAD.supported_alg -> Type0
[]
Spec.Agile.AEAD.cipher
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Agile.AEAD.supported_alg -> Type0
{ "end_col": 113, "end_line": 96, "start_col": 32, "start_line": 96 }
Prims.Tot
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let plain (a: supported_alg) = s:S.seq uint8 { S.length s <= max_length a }
let plain (a: supported_alg) =
false
null
false
s: S.seq uint8 {S.length s <= max_length a}
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.supported_alg", "FStar.Seq.Base.seq", "Spec.Agile.AEAD.uint8", "Prims.b2t", "FStar.Integers.op_Less_Equals", "FStar.Integers.Signed", "FStar.Integers.Winfinite", "FStar.Seq.Base.length", "Spec.Agile.AEAD.max_length" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
true
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 plain : a: Spec.Agile.AEAD.supported_alg -> Type0
[]
Spec.Agile.AEAD.plain
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Agile.AEAD.supported_alg -> Type0
{ "end_col": 75, "end_line": 95, "start_col": 31, "start_line": 95 }
Prims.Tot
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let decrypted #a (c: cipher a) = p:plain a { S.length c = cipher_length p }
let decrypted #a (c: cipher a) =
false
null
false
p: plain a {S.length c = cipher_length p}
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.supported_alg", "Spec.Agile.AEAD.cipher", "Spec.Agile.AEAD.plain", "Prims.b2t", "Prims.op_Equality", "Prims.int", "FStar.Seq.Base.length", "Spec.Agile.AEAD.uint8", "Spec.Agile.AEAD.cipher_length" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
false
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 decrypted : c: Spec.Agile.AEAD.cipher a -> Type0
[]
Spec.Agile.AEAD.decrypted
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
c: Spec.Agile.AEAD.cipher a -> Type0
{ "end_col": 75, "end_line": 103, "start_col": 33, "start_line": 103 }
Prims.Tot
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let ad a = s:S.seq uint8 { S.length s <= max_length a }
let ad a =
false
null
false
s: S.seq uint8 {S.length s <= max_length a}
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.supported_alg", "FStar.Seq.Base.seq", "Spec.Agile.AEAD.uint8", "Prims.b2t", "FStar.Integers.op_Less_Equals", "FStar.Integers.Signed", "FStar.Integers.Winfinite", "FStar.Seq.Base.length", "Spec.Agile.AEAD.max_length" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
true
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 ad : a: Spec.Agile.AEAD.supported_alg -> Type0
[]
Spec.Agile.AEAD.ad
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Agile.AEAD.supported_alg -> Type0
{ "end_col": 55, "end_line": 94, "start_col": 11, "start_line": 94 }
Prims.Tot
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let uint8 = Lib.IntTypes.uint8
let uint8 =
false
null
false
Lib.IntTypes.uint8
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Lib.IntTypes.uint8" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
true
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 uint8 : Type0
[]
Spec.Agile.AEAD.uint8
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 30, "end_line": 85, "start_col": 12, "start_line": 85 }
Prims.Tot
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let cipher_length #a (p: plain a) = S.length p + tag_length a
let cipher_length #a (p: plain a) =
false
null
false
S.length p + tag_length a
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.supported_alg", "Spec.Agile.AEAD.plain", "FStar.Integers.op_Plus", "FStar.Integers.Signed", "FStar.Integers.Winfinite", "FStar.Seq.Base.length", "Spec.Agile.AEAD.uint8", "Spec.Agile.AEAD.tag_length", "FStar.Integers.int_t" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
false
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 cipher_length : p: Spec.Agile.AEAD.plain a -> FStar.Integers.int_t (FStar.Integers.Signed FStar.Integers.Winfinite)
[]
Spec.Agile.AEAD.cipher_length
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
p: Spec.Agile.AEAD.plain a -> FStar.Integers.int_t (FStar.Integers.Signed FStar.Integers.Winfinite)
{ "end_col": 27, "end_line": 99, "start_col": 2, "start_line": 99 }
Prims.Tot
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let encrypted #a (p: plain a) = c:cipher a { S.length c = cipher_length p }
let encrypted #a (p: plain a) =
false
null
false
c: cipher a {S.length c = cipher_length p}
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.supported_alg", "Spec.Agile.AEAD.plain", "Spec.Agile.AEAD.cipher", "Prims.b2t", "Prims.op_Equality", "Prims.int", "FStar.Seq.Base.length", "Spec.Agile.AEAD.uint8", "Spec.Agile.AEAD.cipher_length" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
false
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 encrypted : p: Spec.Agile.AEAD.plain a -> Type0
[]
Spec.Agile.AEAD.encrypted
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
p: Spec.Agile.AEAD.plain a -> Type0
{ "end_col": 75, "end_line": 102, "start_col": 32, "start_line": 102 }
Prims.Tot
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let kv a = lbytes (key_length a)
let kv a =
false
null
false
lbytes (key_length a)
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.alg", "Spec.Agile.AEAD.lbytes", "Spec.Agile.AEAD.key_length" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
true
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 kv : a: Spec.Agile.AEAD.alg -> Type0
[]
Spec.Agile.AEAD.kv
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Agile.AEAD.alg -> Type0
{ "end_col": 32, "end_line": 92, "start_col": 11, "start_line": 92 }
Prims.Tot
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let lbytes (l:nat) = b:Seq.seq uint8 { Seq.length b = l }
let lbytes (l: nat) =
false
null
false
b: Seq.seq uint8 {Seq.length b = l}
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "FStar.Integers.nat", "FStar.Seq.Base.seq", "Spec.Agile.AEAD.uint8", "Prims.b2t", "Prims.op_Equality", "Prims.int", "Prims.l_or", "Prims.op_GreaterThanOrEqual", "FStar.Integers.op_Greater_Equals", "FStar.Integers.Signed", "FStar.Integers.Winfinite", "FStar.Seq.Base.length" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
true
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 lbytes : l: FStar.Integers.nat -> Type0
[]
Spec.Agile.AEAD.lbytes
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
l: FStar.Integers.nat -> Type0
{ "end_col": 57, "end_line": 88, "start_col": 21, "start_line": 88 }
Prims.Tot
val key_length (a: alg) : nat
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let key_length (a: alg): nat = match a with | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 -> Spec.Agile.Cipher.key_length (cipher_alg_of_supported_alg a) | AES128_CCM -> 16 | AES128_CCM8 -> 16 | AES256_CCM -> 32 | AES256_CCM8 -> 32
val key_length (a: alg) : nat let key_length (a: alg) : nat =
false
null
false
match a with | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 -> Spec.Agile.Cipher.key_length (cipher_alg_of_supported_alg a) | AES128_CCM -> 16 | AES128_CCM8 -> 16 | AES256_CCM -> 32 | AES256_CCM8 -> 32
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.alg", "Spec.Agile.Cipher.key_length", "Spec.Agile.AEAD.cipher_alg_of_supported_alg", "FStar.Integers.nat" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
true
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 key_length (a: alg) : nat
[]
Spec.Agile.AEAD.key_length
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Agile.AEAD.alg -> FStar.Integers.nat
{ "end_col": 27, "end_line": 48, "start_col": 2, "start_line": 41 }
Prims.Tot
val tag_length: alg -> nat
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let tag_length: alg -> nat = function | AES128_CCM8 -> 8 | AES256_CCM8 -> 8 | AES128_GCM -> 16 | AES256_GCM -> 16 | CHACHA20_POLY1305 -> 16 | AES128_CCM -> 16 | AES256_CCM -> 16
val tag_length: alg -> nat let tag_length: alg -> nat =
false
null
false
function | AES128_CCM8 -> 8 | AES256_CCM8 -> 8 | AES128_GCM -> 16 | AES256_GCM -> 16 | CHACHA20_POLY1305 -> 16 | AES128_CCM -> 16 | AES256_CCM -> 16
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.alg", "FStar.Integers.int_t", "FStar.Integers.Signed", "FStar.Integers.Winfinite", "Prims.b2t", "Prims.op_GreaterThanOrEqual" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
false
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 tag_length: alg -> nat
[]
Spec.Agile.AEAD.tag_length
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
_: Spec.Agile.AEAD.alg -> i: FStar.Integers.int_t (FStar.Integers.Signed FStar.Integers.Winfinite) {i >= 0}
{ "end_col": 27, "end_line": 58, "start_col": 2, "start_line": 51 }
Prims.Tot
val cipher_alg_of_supported_alg (a: supported_alg) : Spec.Agile.Cipher.cipher_alg
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let cipher_alg_of_supported_alg (a: supported_alg): Spec.Agile.Cipher.cipher_alg = let open Spec.Agile.Cipher in match a with | AES128_GCM -> AES128 | AES256_GCM -> AES256 | CHACHA20_POLY1305 -> CHACHA20
val cipher_alg_of_supported_alg (a: supported_alg) : Spec.Agile.Cipher.cipher_alg let cipher_alg_of_supported_alg (a: supported_alg) : Spec.Agile.Cipher.cipher_alg =
false
null
false
let open Spec.Agile.Cipher in match a with | AES128_GCM -> AES128 | AES256_GCM -> AES256 | CHACHA20_POLY1305 -> CHACHA20
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.supported_alg", "Spec.Agile.Cipher.AES128", "Spec.Agile.Cipher.AES256", "Spec.Agile.Cipher.CHACHA20", "Spec.Agile.Cipher.cipher_alg" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
true
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 cipher_alg_of_supported_alg (a: supported_alg) : Spec.Agile.Cipher.cipher_alg
[]
Spec.Agile.AEAD.cipher_alg_of_supported_alg
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Agile.AEAD.supported_alg -> Spec.Agile.Cipher.cipher_alg
{ "end_col": 33, "end_line": 37, "start_col": 2, "start_line": 33 }
Prims.Tot
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let iv_length (a: supported_alg) (len: nat) = match a with | AES128_GCM -> len > 0 /\ 8 * len <= pow2 64 - 1 | AES256_GCM -> len > 0 /\ 8 * len <= pow2 64 - 1 | CHACHA20_POLY1305 -> len == 12
let iv_length (a: supported_alg) (len: nat) =
false
null
false
match a with | AES128_GCM -> len > 0 /\ 8 * len <= pow2 64 - 1 | AES256_GCM -> len > 0 /\ 8 * len <= pow2 64 - 1 | CHACHA20_POLY1305 -> len == 12
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.supported_alg", "FStar.Integers.nat", "Prims.l_and", "Prims.b2t", "FStar.Integers.op_Greater", "FStar.Integers.Signed", "FStar.Integers.Winfinite", "FStar.Integers.op_Less_Equals", "FStar.Integers.op_Star", "FStar.Integers.op_Subtraction", "Prims.pow2", "Prims.eq2", "Prims.i...
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
true
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 iv_length : a: Spec.Agile.AEAD.supported_alg -> len: FStar.Integers.nat -> Prims.logical
[]
Spec.Agile.AEAD.iv_length
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
a: Spec.Agile.AEAD.supported_alg -> len: FStar.Integers.nat -> Prims.logical
{ "end_col": 34, "end_line": 66, "start_col": 2, "start_line": 63 }
Prims.Tot
val max_length: supported_alg -> nat
[ { "abbrev": true, "full_module": "FStar.Seq", "short_module": "S" }, { "abbrev": false, "full_module": "FStar.Integers", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agile", "short_module": null }, { "abbrev": false, "full_module": "Spec.Agi...
false
let max_length: supported_alg -> nat = function | CHACHA20_POLY1305 -> pow2 32 - 1 - 16 | AES128_GCM | AES256_GCM -> pow2 32 - 1
val max_length: supported_alg -> nat let max_length: supported_alg -> nat =
false
null
false
function | CHACHA20_POLY1305 -> pow2 32 - 1 - 16 | AES128_GCM | AES256_GCM -> pow2 32 - 1
{ "checked_file": "Spec.Agile.AEAD.fsti.checked", "dependencies": [ "Spec.Agile.Cipher.fsti.checked", "prims.fst.checked", "Lib.IntTypes.fsti.checked", "FStar.Seq.fst.checked", "FStar.Pervasives.fsti.checked", "FStar.Integers.fst.checked" ], "interface_file": false, "source_file": "Spe...
[ "total" ]
[ "Spec.Agile.AEAD.supported_alg", "FStar.Integers.op_Subtraction", "FStar.Integers.Signed", "FStar.Integers.Winfinite", "Prims.pow2", "FStar.Integers.int_t", "Prims.b2t", "Prims.op_GreaterThanOrEqual" ]
[]
module Spec.Agile.AEAD open FStar.Integers module S = FStar.Seq #set-options "--max_fuel 0 --max_ifuel 0" // to be used via a module abbreviation, e.g. AEAD.alg type alg = | AES128_GCM | AES256_GCM | CHACHA20_POLY1305 // the algorithms below are used in TLS 1.3 but not yet supported by // EverCrypt or miT...
false
false
Spec.Agile.AEAD.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 2, "initial_ifuel": 1, "max_fuel": 0, "max_ifuel": 0, "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 max_length: supported_alg -> nat
[]
Spec.Agile.AEAD.max_length
{ "file_name": "specs/Spec.Agile.AEAD.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
_: Spec.Agile.AEAD.supported_alg -> i: FStar.Integers.int_t (FStar.Integers.Signed FStar.Integers.Winfinite) {i >= 0}
{ "end_col": 42, "end_line": 81, "start_col": 2, "start_line": 79 }
Prims.Tot
[ { "abbrev": true, "full_module": "Spec.Ed25519", "short_module": "S" }, { "abbrev": true, "full_module": "FStar.HyperStack.ST", "short_module": "ST" }, { "abbrev": false, "full_module": "Hacl.Spec.BignumQ.Definitions", "short_module": null }, { "abbrev": false, ...
false
let qelem_wide = lbuffer uint64 10ul
let qelem_wide =
false
null
false
lbuffer uint64 10ul
{ "checked_file": "Hacl.Impl.BignumQ.Mul.fsti.checked", "dependencies": [ "Spec.Ed25519.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.BignumQ.Definitions.fst.checked", "FStar.UInt32.fsti.checked", "F...
[ "total" ]
[ "Lib.Buffer.lbuffer", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t" ]
[]
module Hacl.Impl.BignumQ.Mul open FStar.HyperStack open FStar.HyperStack.All open FStar.Mul open Lib.IntTypes open Lib.Buffer open Lib.Sequence open Hacl.Spec.BignumQ.Definitions module ST = FStar.HyperStack.ST module S = Spec.Ed25519 #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract...
false
true
Hacl.Impl.BignumQ.Mul.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "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 qelem_wide : Type0
[]
Hacl.Impl.BignumQ.Mul.qelem_wide
{ "file_name": "code/ed25519/Hacl.Impl.BignumQ.Mul.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 36, "end_line": 22, "start_col": 17, "start_line": 22 }
Prims.Tot
[ { "abbrev": true, "full_module": "Spec.Ed25519", "short_module": "S" }, { "abbrev": true, "full_module": "FStar.HyperStack.ST", "short_module": "ST" }, { "abbrev": false, "full_module": "Hacl.Spec.BignumQ.Definitions", "short_module": null }, { "abbrev": false, ...
false
let qelemB = lbuffer uint64 5ul
let qelemB =
false
null
false
lbuffer uint64 5ul
{ "checked_file": "Hacl.Impl.BignumQ.Mul.fsti.checked", "dependencies": [ "Spec.Ed25519.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.BignumQ.Definitions.fst.checked", "FStar.UInt32.fsti.checked", "F...
[ "total" ]
[ "Lib.Buffer.lbuffer", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t" ]
[]
module Hacl.Impl.BignumQ.Mul open FStar.HyperStack open FStar.HyperStack.All open FStar.Mul open Lib.IntTypes open Lib.Buffer open Lib.Sequence open Hacl.Spec.BignumQ.Definitions module ST = FStar.HyperStack.ST module S = Spec.Ed25519 #set-options "--z3rlimit 50 --fuel 0 --ifuel 0"
false
true
Hacl.Impl.BignumQ.Mul.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "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 qelemB : Type0
[]
Hacl.Impl.BignumQ.Mul.qelemB
{ "file_name": "code/ed25519/Hacl.Impl.BignumQ.Mul.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 31, "end_line": 19, "start_col": 13, "start_line": 19 }
Prims.Tot
[ { "abbrev": true, "full_module": "Spec.Ed25519", "short_module": "S" }, { "abbrev": true, "full_module": "FStar.HyperStack.ST", "short_module": "ST" }, { "abbrev": false, "full_module": "Hacl.Spec.BignumQ.Definitions", "short_module": null }, { "abbrev": false, ...
false
let scalar_inv_full_t (h:mem) (s:lbuffer uint64 5ul) = qelem_fits h s (1, 1, 1, 1, 1) /\ as_nat h s < Spec.Ed25519.q
let scalar_inv_full_t (h: mem) (s: lbuffer uint64 5ul) =
false
null
false
qelem_fits h s (1, 1, 1, 1, 1) /\ as_nat h s < Spec.Ed25519.q
{ "checked_file": "Hacl.Impl.BignumQ.Mul.fsti.checked", "dependencies": [ "Spec.Ed25519.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.BignumQ.Definitions.fst.checked", "FStar.UInt32.fsti.checked", "F...
[ "total" ]
[ "FStar.Monotonic.HyperStack.mem", "Lib.Buffer.lbuffer", "Lib.IntTypes.uint64", "FStar.UInt32.__uint_to_t", "Prims.l_and", "Hacl.Impl.BignumQ.Mul.qelem_fits", "FStar.Pervasives.Native.Mktuple5", "Prims.nat", "Prims.b2t", "Prims.op_LessThan", "Hacl.Impl.BignumQ.Mul.as_nat", "Spec.Ed25519.q", "...
[]
module Hacl.Impl.BignumQ.Mul open FStar.HyperStack open FStar.HyperStack.All open FStar.Mul open Lib.IntTypes open Lib.Buffer open Lib.Sequence open Hacl.Spec.BignumQ.Definitions module ST = FStar.HyperStack.ST module S = Spec.Ed25519 #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract...
false
false
Hacl.Impl.BignumQ.Mul.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "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 scalar_inv_full_t : h: FStar.Monotonic.HyperStack.mem -> s: Lib.Buffer.lbuffer Lib.IntTypes.uint64 5ul -> Prims.logical
[]
Hacl.Impl.BignumQ.Mul.scalar_inv_full_t
{ "file_name": "code/ed25519/Hacl.Impl.BignumQ.Mul.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
h: FStar.Monotonic.HyperStack.mem -> s: Lib.Buffer.lbuffer Lib.IntTypes.uint64 5ul -> Prims.logical
{ "end_col": 29, "end_line": 52, "start_col": 2, "start_line": 51 }
Prims.Tot
val qelem_fits (h: mem) (f: qelemB) (m: scale64_5) : Type0
[ { "abbrev": true, "full_module": "Spec.Ed25519", "short_module": "S" }, { "abbrev": true, "full_module": "FStar.HyperStack.ST", "short_module": "ST" }, { "abbrev": false, "full_module": "Hacl.Spec.BignumQ.Definitions", "short_module": null }, { "abbrev": false, ...
false
let qelem_fits (h:mem) (f:qelemB) (m:scale64_5) : Type0 = let s = as_seq h f in qelem_fits5 (s.[0], s.[1], s.[2], s.[3], s.[4]) m
val qelem_fits (h: mem) (f: qelemB) (m: scale64_5) : Type0 let qelem_fits (h: mem) (f: qelemB) (m: scale64_5) : Type0 =
false
null
false
let s = as_seq h f in qelem_fits5 (s.[ 0 ], s.[ 1 ], s.[ 2 ], s.[ 3 ], s.[ 4 ]) m
{ "checked_file": "Hacl.Impl.BignumQ.Mul.fsti.checked", "dependencies": [ "Spec.Ed25519.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.BignumQ.Definitions.fst.checked", "FStar.UInt32.fsti.checked", "F...
[ "total" ]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.BignumQ.Mul.qelemB", "Hacl.Spec.BignumQ.Definitions.scale64_5", "Hacl.Spec.BignumQ.Definitions.qelem_fits5", "FStar.Pervasives.Native.Mktuple5", "Lib.IntTypes.uint64", "Lib.Sequence.op_String_Access", "Lib.IntTypes.v", "Lib.IntTypes.U32", "Lib.IntTypes....
[]
module Hacl.Impl.BignumQ.Mul open FStar.HyperStack open FStar.HyperStack.All open FStar.Mul open Lib.IntTypes open Lib.Buffer open Lib.Sequence open Hacl.Spec.BignumQ.Definitions module ST = FStar.HyperStack.ST module S = Spec.Ed25519 #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract...
false
true
Hacl.Impl.BignumQ.Mul.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "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 qelem_fits (h: mem) (f: qelemB) (m: scale64_5) : Type0
[]
Hacl.Impl.BignumQ.Mul.qelem_fits
{ "file_name": "code/ed25519/Hacl.Impl.BignumQ.Mul.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
h: FStar.Monotonic.HyperStack.mem -> f: Hacl.Impl.BignumQ.Mul.qelemB -> m: Hacl.Spec.BignumQ.Definitions.scale64_5 -> Type0
{ "end_col": 51, "end_line": 40, "start_col": 57, "start_line": 38 }
Prims.GTot
val as_nat (h: mem) (e: qelemB) : GTot nat
[ { "abbrev": true, "full_module": "Spec.Ed25519", "short_module": "S" }, { "abbrev": true, "full_module": "FStar.HyperStack.ST", "short_module": "ST" }, { "abbrev": false, "full_module": "Hacl.Spec.BignumQ.Definitions", "short_module": null }, { "abbrev": false, ...
false
let as_nat (h:mem) (e:qelemB) : GTot nat = let s = as_seq h e in as_nat5 (s.[0], s.[1], s.[2], s.[3], s.[4])
val as_nat (h: mem) (e: qelemB) : GTot nat let as_nat (h: mem) (e: qelemB) : GTot nat =
false
null
false
let s = as_seq h e in as_nat5 (s.[ 0 ], s.[ 1 ], s.[ 2 ], s.[ 3 ], s.[ 4 ])
{ "checked_file": "Hacl.Impl.BignumQ.Mul.fsti.checked", "dependencies": [ "Spec.Ed25519.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.BignumQ.Definitions.fst.checked", "FStar.UInt32.fsti.checked", "F...
[ "sometrivial" ]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.BignumQ.Mul.qelemB", "Hacl.Spec.BignumQ.Definitions.as_nat5", "FStar.Pervasives.Native.Mktuple5", "Lib.IntTypes.uint64", "Lib.Sequence.op_String_Access", "Lib.IntTypes.v", "Lib.IntTypes.U32", "Lib.IntTypes.PUB", "FStar.UInt32.__uint_to_t", "Lib.Sequen...
[]
module Hacl.Impl.BignumQ.Mul open FStar.HyperStack open FStar.HyperStack.All open FStar.Mul open Lib.IntTypes open Lib.Buffer open Lib.Sequence open Hacl.Spec.BignumQ.Definitions module ST = FStar.HyperStack.ST module S = Spec.Ed25519 #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract...
false
false
Hacl.Impl.BignumQ.Mul.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "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 as_nat (h: mem) (e: qelemB) : GTot nat
[]
Hacl.Impl.BignumQ.Mul.as_nat
{ "file_name": "code/ed25519/Hacl.Impl.BignumQ.Mul.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
h: FStar.Monotonic.HyperStack.mem -> e: Hacl.Impl.BignumQ.Mul.qelemB -> Prims.GTot Prims.nat
{ "end_col": 45, "end_line": 28, "start_col": 42, "start_line": 26 }
Prims.Tot
val qelem_wide_fits (h: mem) (f: qelem_wide) (m: scale64_10) : Type0
[ { "abbrev": true, "full_module": "Spec.Ed25519", "short_module": "S" }, { "abbrev": true, "full_module": "FStar.HyperStack.ST", "short_module": "ST" }, { "abbrev": false, "full_module": "Hacl.Spec.BignumQ.Definitions", "short_module": null }, { "abbrev": false, ...
false
let qelem_wide_fits (h:mem) (f:qelem_wide) (m:scale64_10) : Type0 = let s = as_seq h f in qelem_wide_fits5 (s.[0], s.[1], s.[2], s.[3], s.[4], s.[5], s.[6], s.[7], s.[8], s.[9]) m
val qelem_wide_fits (h: mem) (f: qelem_wide) (m: scale64_10) : Type0 let qelem_wide_fits (h: mem) (f: qelem_wide) (m: scale64_10) : Type0 =
false
null
false
let s = as_seq h f in qelem_wide_fits5 (s.[ 0 ], s.[ 1 ], s.[ 2 ], s.[ 3 ], s.[ 4 ], s.[ 5 ], s.[ 6 ], s.[ 7 ], s.[ 8 ], s.[ 9 ]) m
{ "checked_file": "Hacl.Impl.BignumQ.Mul.fsti.checked", "dependencies": [ "Spec.Ed25519.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.BignumQ.Definitions.fst.checked", "FStar.UInt32.fsti.checked", "F...
[ "total" ]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.BignumQ.Mul.qelem_wide", "Hacl.Spec.BignumQ.Definitions.scale64_10", "Hacl.Spec.BignumQ.Definitions.qelem_wide_fits5", "FStar.Pervasives.Native.Mktuple10", "Lib.IntTypes.uint64", "Lib.Sequence.op_String_Access", "Lib.IntTypes.v", "Lib.IntTypes.U32", "Li...
[]
module Hacl.Impl.BignumQ.Mul open FStar.HyperStack open FStar.HyperStack.All open FStar.Mul open Lib.IntTypes open Lib.Buffer open Lib.Sequence open Hacl.Spec.BignumQ.Definitions module ST = FStar.HyperStack.ST module S = Spec.Ed25519 #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract...
false
true
Hacl.Impl.BignumQ.Mul.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "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 qelem_wide_fits (h: mem) (f: qelem_wide) (m: scale64_10) : Type0
[]
Hacl.Impl.BignumQ.Mul.qelem_wide_fits
{ "file_name": "code/ed25519/Hacl.Impl.BignumQ.Mul.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
h: FStar.Monotonic.HyperStack.mem -> f: Hacl.Impl.BignumQ.Mul.qelem_wide -> m: Hacl.Spec.BignumQ.Definitions.scale64_10 -> Type0
{ "end_col": 91, "end_line": 46, "start_col": 67, "start_line": 44 }
Prims.GTot
val wide_as_nat (h: mem) (e: qelem_wide) : GTot nat
[ { "abbrev": true, "full_module": "Spec.Ed25519", "short_module": "S" }, { "abbrev": true, "full_module": "FStar.HyperStack.ST", "short_module": "ST" }, { "abbrev": false, "full_module": "Hacl.Spec.BignumQ.Definitions", "short_module": null }, { "abbrev": false, ...
false
let wide_as_nat (h:mem) (e:qelem_wide) : GTot nat = let s = as_seq h e in wide_as_nat5 (s.[0], s.[1], s.[2], s.[3], s.[4], s.[5], s.[6], s.[7], s.[8], s.[9])
val wide_as_nat (h: mem) (e: qelem_wide) : GTot nat let wide_as_nat (h: mem) (e: qelem_wide) : GTot nat =
false
null
false
let s = as_seq h e in wide_as_nat5 (s.[ 0 ], s.[ 1 ], s.[ 2 ], s.[ 3 ], s.[ 4 ], s.[ 5 ], s.[ 6 ], s.[ 7 ], s.[ 8 ], s.[ 9 ])
{ "checked_file": "Hacl.Impl.BignumQ.Mul.fsti.checked", "dependencies": [ "Spec.Ed25519.fst.checked", "prims.fst.checked", "Lib.Sequence.fsti.checked", "Lib.IntTypes.fsti.checked", "Lib.Buffer.fsti.checked", "Hacl.Spec.BignumQ.Definitions.fst.checked", "FStar.UInt32.fsti.checked", "F...
[ "sometrivial" ]
[ "FStar.Monotonic.HyperStack.mem", "Hacl.Impl.BignumQ.Mul.qelem_wide", "Hacl.Spec.BignumQ.Definitions.wide_as_nat5", "FStar.Pervasives.Native.Mktuple10", "Lib.IntTypes.uint64", "Lib.Sequence.op_String_Access", "Lib.IntTypes.v", "Lib.IntTypes.U32", "Lib.IntTypes.PUB", "FStar.UInt32.__uint_to_t", "...
[]
module Hacl.Impl.BignumQ.Mul open FStar.HyperStack open FStar.HyperStack.All open FStar.Mul open Lib.IntTypes open Lib.Buffer open Lib.Sequence open Hacl.Spec.BignumQ.Definitions module ST = FStar.HyperStack.ST module S = Spec.Ed25519 #set-options "--z3rlimit 50 --fuel 0 --ifuel 0" inline_for_extraction noextract...
false
false
Hacl.Impl.BignumQ.Mul.fsti
{ "detail_errors": false, "detail_hint_replay": false, "initial_fuel": 0, "initial_ifuel": 0, "max_fuel": 0, "max_ifuel": 0, "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 wide_as_nat (h: mem) (e: qelem_wide) : GTot nat
[]
Hacl.Impl.BignumQ.Mul.wide_as_nat
{ "file_name": "code/ed25519/Hacl.Impl.BignumQ.Mul.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
h: FStar.Monotonic.HyperStack.mem -> e: Hacl.Impl.BignumQ.Mul.qelem_wide -> Prims.GTot Prims.nat
{ "end_col": 85, "end_line": 34, "start_col": 51, "start_line": 32 }
Prims.Tot
[ { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_mod...
false
let vale_stack = Vale.X64.Stack_i.vale_stack
let vale_stack =
false
null
false
Vale.X64.Stack_i.vale_stack
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Stack_i.vale_stack" ]
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode
false
true
Vale.X64.InsBasic.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_stack : Type0
[]
Vale.X64.InsBasic.vale_stack
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type0
{ "end_col": 51, "end_line": 11, "start_col": 24, "start_line": 11 }
Prims.Tot
[ { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.State", "short_module": null }, { "abbrev": false, "full_mod...
false
let vale_heap = Vale.X64.Memory.vale_heap
let vale_heap =
false
null
false
Vale.X64.Memory.vale_heap
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Memory.vale_heap" ]
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls
false
true
Vale.X64.InsBasic.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.X64.InsBasic.vale_heap
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
Type
{ "end_col": 48, "end_line": 10, "start_col": 23, "start_line": 10 }
Prims.Tot
val va_wp_Add64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Add64Wrap (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst:va_value_dst_opr64) (va_x_efl:Vale.X64.Flags.t) . let va_sM = va_upd_flags va_x_...
val va_wp_Add64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Add64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Ty...
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_dst_opr64 dst va_x_dst va_s0) in va_get_ok va_sM /\ va_eval_dst_opr64 va_sM dst == Vale.Arch....
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Prims.l_Forall", "Vale.X64.Decls.va_value_dst_opr64"...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Add64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Add64Wrap
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 47, "end_line": 145, "start_col": 2, "start_line": 140 }
Prims.Tot
val va_wp_Adc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Adc64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ va_eval_opr64 va_s0 src + va_eval_dst_opr64 va_s0 dst + 1 < pow2_64 /\ Vale.X64.Decls.valid_cf (va_get...
val va_wp_Adc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Adc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ va_eval_opr64 va_s0 src + va_eval_dst_opr64 va_s0 dst + 1 < pow2_64 /\ Vale.X64.Decls.valid_cf (va_get_flags va_s0) /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Prims.op_LessThan", "Prims.op_Addition", "Vale.X64...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Adc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Adc64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 10, "end_line": 227, "start_col": 2, "start_line": 219 }
Prims.Tot
val va_wp_Sub64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Sub64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ 0 <= va_eval_dst_opr64 va_s0 dst - va_eval_opr64 va_s0 src /\ (forall (va_x_dst:va_value_dst_opr64) ...
val va_wp_Sub64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Sub64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ 0 <= va_eval_dst_opr64 va_s0 dst - va_eval_opr64 va_s0 src /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_dst_opr64 dst va_x_dst va_s0) in va_get_o...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Prims.op_LessThanOrEqual", "Prims.op_Subtraction", ...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Sub64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Sub64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 55, "end_line": 400, "start_col": 2, "start_line": 396 }
Prims.Tot
val va_wp_Xor64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Xor64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst:va_value_dst_opr64) (va_x_efl:Vale.X64.Flags.t) . let va_sM = va_upd_flags va_x_efl ...
val va_wp_Xor64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Xor64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_dst_opr64 dst va_x_dst va_s0) in va_get_ok va_sM /\ va_eval_dst_opr64 va_sM dst == Vale.Arch....
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Prims.l_Forall", "Vale.X64.Decls.va_value_dst_opr64"...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Xor64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Xor64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 25, "end_line": 635, "start_col": 2, "start_line": 629 }
Prims.Tot
val va_wp_Cpuid_Sha (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Cpuid_Sha (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 7 /\ va_get_reg64 rRcx va_s0 = 0 /\ (forall (va_x_rax:nat64) (va_x_rbx:nat64) (va_x_rcx:nat64) (va_x_rdx:nat64) . let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (...
val va_wp_Cpuid_Sha (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Cpuid_Sha (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 7 /\ va_get_reg64 rRcx va_s0 = 0 /\ (forall (va_x_rax: nat64) (va_x_rbx: nat64) (va_x_rcx: nat64) (va_x_rdx: nat64). let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rb...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.op_Equality", "Prims.int", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRax", "Vale.X64.Machine_s.rRcx", "Prims.l_Forall", "Vale.X64.Machine_s.nat64", "Prims.l_imp", "Prims.eq2", ...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Cpuid_Sha (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Cpuid_Sha
{ "file_name": "obj/Vale.X64.InsBasic.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": 54, "end_line": 813, "start_col": 2, "start_line": 809 }
Prims.Tot
val va_wp_Mul64Wrap (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Mul64Wrap (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_efl:Vale.X64.Flags.t) (va_x_rax:nat64) (va_x_rdx:nat64) . let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRax va_x_rax (va_upd_flags v...
val va_wp_Mul64Wrap (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Mul64Wrap (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_efl: Vale.X64.Flags.t) (va_x_rax: nat64) (va_x_rdx: nat64). let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRax va_x_rax (va_upd_flags va_x_efl va_s0)) in va_get_ok va_sM /\ va_mul_nat pow2_64 (va_get_reg64 rRdx va_sM...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Vale.X64.Decls.va_is_src_opr64", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.l_Forall", "Vale.X64.Flags.t", "Vale.X64.Machine_s.nat64", "Prims.l_imp", "Prims.eq2", "Prims.int", "Prims.op_Additio...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Mul64Wrap (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Mul64Wrap
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 36, "end_line": 517, "start_col": 2, "start_line": 513 }
Prims.Tot
val va_wp_Cpuid_Adx_Bmi2 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Cpuid_Adx_Bmi2 (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 7 /\ va_get_reg64 rRcx va_s0 = 0 /\ (forall (va_x_rax:nat64) (va_x_rbx:nat64) (va_x_rcx:nat64) (va_x_rdx:nat64) . let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_...
val va_wp_Cpuid_Adx_Bmi2 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Cpuid_Adx_Bmi2 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 7 /\ va_get_reg64 rRcx va_s0 = 0 /\ (forall (va_x_rax: nat64) (va_x_rbx: nat64) (va_x_rcx: nat64) (va_x_rdx: nat64). let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rb...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.op_Equality", "Prims.int", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRax", "Vale.X64.Machine_s.rRcx", "Prims.l_Forall", "Vale.X64.Machine_s.nat64", "Prims.l_imp", "Prims.eq2", ...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Cpuid_Adx_Bmi2 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Cpuid_Adx_Bmi2
{ "file_name": "obj/Vale.X64.InsBasic.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": 25, "end_line": 847, "start_col": 2, "start_line": 842 }
Prims.Tot
val va_wp_Shl64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Shl64 (dst:va_operand_dst_opr64) (amt:va_operand_shift_amt64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_shift_amt64 amt va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst:va_value_dst_opr64) (va_x_efl:Vale.X64.Flags.t) . let va_sM = va_upd_fla...
val va_wp_Shl64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Shl64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) ...
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_shift_amt64 amt va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_dst_opr64 dst va_x_dst va_s0) in va_get_ok va_sM /\ va_eval_dst_opr64 va_sM dst == Vale...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_shift_amt64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_shift_amt64", "Vale.X64.Decls.va_get_ok", "Prims.l_Forall", "Vale.X64.Decls.va_valu...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Shl64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Shl64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> amt: Vale.X64.Decls.va_operand_shift_amt64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 21, "end_line": 708, "start_col": 2, "start_line": 704 }
Prims.Tot
val va_wp_Cpuid_Movbe (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Cpuid_Movbe (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 1 /\ (forall (va_x_rax:nat64) (va_x_rbx:nat64) (va_x_rcx:nat64) (va_x_rdx:nat64) . let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rbx (v...
val va_wp_Cpuid_Movbe (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Cpuid_Movbe (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 1 /\ (forall (va_x_rax: nat64) (va_x_rbx: nat64) (va_x_rcx: nat64) (va_x_rdx: nat64). let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rbx (va_upd_reg64 rRax va_x_rax v...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.op_Equality", "Prims.int", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRax", "Prims.l_Forall", "Vale.X64.Machine_s.nat64", "Prims.l_imp", "Prims.eq2", "Prims.bool", "Prims.op_G...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Cpuid_Movbe (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Cpuid_Movbe
{ "file_name": "obj/Vale.X64.InsBasic.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": 10, "end_line": 979, "start_col": 2, "start_line": 975 }
Prims.Tot
val va_wp_Cpuid_Sse (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Cpuid_Sse (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 1 /\ (forall (va_x_rax:nat64) (va_x_rbx:nat64) (va_x_rcx:nat64) (va_x_rdx:nat64) . let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rbx (va_...
val va_wp_Cpuid_Sse (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Cpuid_Sse (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 1 /\ (forall (va_x_rax: nat64) (va_x_rbx: nat64) (va_x_rcx: nat64) (va_x_rdx: nat64). let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rbx (va_upd_reg64 rRax va_x_rax v...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.op_Equality", "Prims.int", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRax", "Prims.l_Forall", "Vale.X64.Machine_s.nat64", "Prims.l_imp", "Prims.eq2", "Prims.bool", "Prims.op_G...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Cpuid_Sse (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Cpuid_Sse
{ "file_name": "obj/Vale.X64.InsBasic.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": 99, "end_line": 947, "start_col": 2, "start_line": 942 }
Prims.Tot
val va_wp_Cpuid_Avx512 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Cpuid_Avx512 (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 7 /\ va_get_reg64 rRcx va_s0 = 0 /\ (forall (va_x_rax:nat64) (va_x_rbx:nat64) (va_x_rcx:nat64) (va_x_rdx:nat64) . let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rc...
val va_wp_Cpuid_Avx512 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Cpuid_Avx512 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 7 /\ va_get_reg64 rRcx va_s0 = 0 /\ (forall (va_x_rax: nat64) (va_x_rbx: nat64) (va_x_rcx: nat64) (va_x_rdx: nat64). let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rb...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.op_Equality", "Prims.int", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRax", "Vale.X64.Machine_s.rRcx", "Prims.l_Forall", "Vale.X64.Machine_s.nat64", "Prims.l_imp", "Prims.eq2", ...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Cpuid_Avx512 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Cpuid_Avx512
{ "file_name": "obj/Vale.X64.InsBasic.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": 42, "end_line": 1049, "start_col": 2, "start_line": 1042 }
Prims.Tot
val va_wp_Comment (c: string) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Comment (c:string) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ (let va_sM = va_s0 in va_get_ok va_sM ==> va_k va_sM (())))
val va_wp_Comment (c: string) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Comment (c: string) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ (let va_sM = va_s0 in va_get_ok va_sM ==> va_k va_sM (())))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.string", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.l_imp", "Vale.X64.State.vale_state" ]
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Comment (c: string) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Comment
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
c: Prims.string -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 81, "end_line": 1212, "start_col": 2, "start_line": 1212 }
Prims.Tot
val va_wp_NoNewline (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_NoNewline (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ (let va_sM = va_s0 in va_get_ok va_sM ==> va_k va_sM (())))
val va_wp_NoNewline (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_NoNewline (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ (let va_sM = va_s0 in va_get_ok va_sM ==> va_k va_sM (())))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.l_imp", "Vale.X64.State.vale_state" ]
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_NoNewline (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_NoNewline
{ "file_name": "obj/Vale.X64.InsBasic.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": 81, "end_line": 1260, "start_col": 2, "start_line": 1260 }
Prims.Tot
val va_wp_Newline (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Newline (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ (let va_sM = va_s0 in va_get_ok va_sM ==> va_k va_sM (())))
val va_wp_Newline (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Newline (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ (let va_sM = va_s0 in va_get_ok va_sM ==> va_k va_sM (())))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.l_imp", "Vale.X64.State.vale_state" ]
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Newline (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Newline
{ "file_name": "obj/Vale.X64.InsBasic.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": 81, "end_line": 1284, "start_col": 2, "start_line": 1284 }
Prims.Tot
val va_wp_Space (n: nat) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Space (n:nat) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ (let va_sM = va_s0 in va_get_ok va_sM ==> va_k va_sM (())))
val va_wp_Space (n: nat) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Space (n: nat) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ (let va_sM = va_s0 in va_get_ok va_sM ==> va_k va_sM (())))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.nat", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.l_imp", "Vale.X64.State.vale_state" ]
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Space (n: nat) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Space
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
n: Prims.nat -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 81, "end_line": 1308, "start_col": 2, "start_line": 1308 }
Prims.Tot
val va_wp_Prefetchnta (v: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Prefetchnta (v:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_src_opr64 v va_s0 /\ va_get_ok va_s0 /\ (let va_sM = va_s0 in va_get_ok va_sM ==> va_k va_sM (())))
val va_wp_Prefetchnta (v: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Prefetchnta (v: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_is_src_opr64 v va_s0 /\ va_get_ok va_s0 /\ (let va_sM = va_s0 in va_get_ok va_sM ==> va_k va_sM (())))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Vale.X64.Decls.va_is_src_opr64", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.l_imp", "Vale.X64.State.vale_state" ]
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Prefetchnta (v: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Prefetchnta
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
v: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 16, "end_line": 1335, "start_col": 2, "start_line": 1334 }
Prims.Tot
val va_wp_Xgetbv_Avx (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Xgetbv_Avx (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ osxsave_enabled /\ va_get_reg64 rRcx va_s0 = 0 /\ (forall (va_x_rax:nat64) (va_x_rdx:nat64) . let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRax va_x_rax va_s0) in va_get_ok va_sM /\ Vale.Arch.Types.i...
val va_wp_Xgetbv_Avx (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Xgetbv_Avx (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ osxsave_enabled /\ va_get_reg64 rRcx va_s0 = 0 /\ (forall (va_x_rax: nat64) (va_x_rdx: nat64). let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRax va_x_rax va_s0) in va_get_ok va_sM /\ Vale.Arch.Types.iand64 (va_get_reg64 rRax va_sM) 2 > 0 == sse_xcr0_enabled /\ Vale.Arch.T...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Vale.X64.CPU_Features_s.osxsave_enabled", "Prims.op_Equality", "Prims.int", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRcx", "Prims.l_Forall", "Vale.X64.Machine_s.nat64", "Prims.l_imp",...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Xgetbv_Avx (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Xgetbv_Avx
{ "file_name": "obj/Vale.X64.InsBasic.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": 10, "end_line": 1113, "start_col": 2, "start_line": 1109 }
Prims.Tot
val va_wp_Xgetbv_Avx512 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Xgetbv_Avx512 (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ osxsave_enabled /\ va_get_reg64 rRcx va_s0 = 0 /\ (forall (va_x_rax:nat64) (va_x_rdx:nat64) . let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRax va_x_rax va_s0) in va_get_ok va_sM /\ Vale.Arch.Type...
val va_wp_Xgetbv_Avx512 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Xgetbv_Avx512 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ osxsave_enabled /\ va_get_reg64 rRcx va_s0 = 0 /\ (forall (va_x_rax: nat64) (va_x_rdx: nat64). let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRax va_x_rax va_s0) in va_get_ok va_sM /\ Vale.Arch.Types.iand64 (va_get_reg64 rRax va_sM) 32 > 0 == opmask_xcr0_enabled /\ V...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Vale.X64.CPU_Features_s.osxsave_enabled", "Prims.op_Equality", "Prims.int", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRcx", "Prims.l_Forall", "Vale.X64.Machine_s.nat64", "Prims.l_imp",...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Xgetbv_Avx512 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Xgetbv_Avx512
{ "file_name": "obj/Vale.X64.InsBasic.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": 47, "end_line": 1148, "start_col": 2, "start_line": 1143 }
Prims.Tot
val va_wp_Nat64Equal (dst src: va_operand_reg_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Nat64Equal (dst:va_operand_reg_opr64) (src:va_operand_reg_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_reg_opr64 dst va_s0 /\ va_is_dst_reg_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst:va_value_reg_opr64) (va_x_src:va_value_reg_opr64) (va_x_efl:Vale.X64.Fl...
val va_wp_Nat64Equal (dst src: va_operand_reg_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Nat64Equal (dst src: va_operand_reg_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_is_dst_reg_opr64 dst va_s0 /\ va_is_dst_reg_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst: va_value_reg_opr64) (va_x_src: va_value_reg_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_reg_opr64 src va_x_src (va_upd_operand_reg_opr...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_reg_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Vale.X64.Decls.va_is_dst_reg_opr64", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.l_Forall", "Vale.X64.Decls.va_value_reg_opr64", "Vale.X64.Flags.t", "Prims.l_imp", "Vale.X64.Decls.va_if", "Pri...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Nat64Equal (dst src: va_operand_reg_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Nat64Equal
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_reg_opr64 -> src: Vale.X64.Decls.va_operand_reg_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 40, "end_line": 1185, "start_col": 2, "start_line": 1180 }
Prims.Tot
val va_wp_Mov64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Mov64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst:va_value_dst_opr64) . let va_sM = va_upd_operand_dst_opr64 dst va_x_dst va_s0 in ...
val va_wp_Mov64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Mov64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst: va_value_dst_opr64). let va_sM = va_upd_operand_dst_opr64 dst va_x_dst va_s0 in va_get_ok va_sM /\ va_eval_dst_opr64 va_sM dst == va_eval_opr64 va_s0 src ==> va_k va_sM (())) )
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Prims.l_Forall", "Vale.X64.Decls.va_value_dst_opr64"...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Mov64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Mov64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 99, "end_line": 32, "start_col": 2, "start_line": 30 }
Prims.Tot
val va_wp_Add64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Add64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ va_eval_opr64 va_s0 src + va_eval_dst_opr64 va_s0 dst < pow2_64 /\ (forall (va_x_dst:va_value_dst_opr6...
val va_wp_Add64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Add64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ va_eval_opr64 va_s0 src + va_eval_dst_opr64 va_s0 dst < pow2_64 /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_dst_opr64 dst va_x_dst va_s0) in va_...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Prims.op_LessThan", "Prims.op_Addition", "Vale.X64...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Add64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Add64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 55, "end_line": 107, "start_col": 2, "start_line": 103 }
Prims.Tot
val va_wp_AddLea64 (dst: va_operand_dst_opr64) (src1 src2: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_AddLea64 (dst:va_operand_dst_opr64) (src1:va_operand_opr64) (src2:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src1 va_s0 /\ va_is_src_opr64 src2 va_s0 /\ va_get_ok va_s0 /\ Vale.X64.Decls.max_one_mem src1 src2 /\ va_...
val va_wp_AddLea64 (dst: va_operand_dst_opr64) (src1 src2: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_AddLea64 (dst: va_operand_dst_opr64) (src1 src2: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)...
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src1 va_s0 /\ va_is_src_opr64 src2 va_s0 /\ va_get_ok va_s0 /\ Vale.X64.Decls.max_one_mem src1 src2 /\ va_eval_opr64 va_s0 src1 + va_eval_opr64 va_s0 src2 < pow2_64 /\ (forall (va_x_dst: va_value_dst_opr64). let va_sM = va_upd_operand_dst_opr64 dst va_x_dst ...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Vale.X64.Decls.max_one_mem", "Prims.op_LessThan", ...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_AddLea64 (dst: va_operand_dst_opr64) (src1 src2: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_AddLea64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src1: Vale.X64.Decls.va_operand_opr64 -> src2: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 80, "end_line": 184, "start_col": 2, "start_line": 180 }
Prims.Tot
val va_quick_Cmovc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Cmovc64 dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Cmovc64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_Cmovc64 dst src)) = (va_QProc (va_code_Cmovc64 dst src) ([va_mod_dst_opr64 dst]) (va_wp_Cmovc64 dst src) (va_wpProof_Cmovc64 dst src))
val va_quick_Cmovc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Cmovc64 dst src)) let va_quick_Cmovc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Cmovc64 dst src)) =
false
null
false
(va_QProc (va_code_Cmovc64 dst src) ([va_mod_dst_opr64 dst]) (va_wp_Cmovc64 dst src) (va_wpProof_Cmovc64 dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Cmovc64", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X64.InsBasic.va_wp_Cmovc64", "Vale.X64.I...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Cmovc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Cmovc64 dst src))
[]
Vale.X64.InsBasic.va_quick_Cmovc64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Cmovc64 dst src)
{ "end_col": 33, "end_line": 82, "start_col": 2, "start_line": 81 }
Prims.Tot
val va_wp_Mulx64 (dst_hi dst_lo: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Mulx64 (dst_hi:va_operand_dst_opr64) (dst_lo:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst_hi va_s0 /\ va_is_dst_dst_opr64 dst_lo va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ bmi2_enabled /\ dst_hi =!= ds...
val va_wp_Mulx64 (dst_hi dst_lo: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Mulx64 (dst_hi dst_lo: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Ty...
false
null
false
(va_is_dst_dst_opr64 dst_hi va_s0 /\ va_is_dst_dst_opr64 dst_lo va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ bmi2_enabled /\ dst_hi =!= dst_lo /\ (forall (va_x_dst_hi: va_value_dst_opr64) (va_x_dst_lo: va_value_dst_opr64). let va_sM = va_upd_operand_dst_opr64 dst_lo va_x_dst_lo ...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Vale.X64.CPU_Features_s.bmi2_enabled", "Prims.l_not"...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Mulx64 (dst_hi dst_lo: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Mulx64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst_hi: Vale.X64.Decls.va_operand_dst_opr64 -> dst_lo: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 10, "end_line": 558, "start_col": 2, "start_line": 552 }
Prims.Tot
val va_quick_Add64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Add64 dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Add64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_Add64 dst src)) = (va_QProc (va_code_Add64 dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Add64 dst src) (va_wpProof_Add64 dst src))
val va_quick_Add64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Add64 dst src)) let va_quick_Add64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Add64 dst src)) =
false
null
false
(va_QProc (va_code_Add64 dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Add64 dst src) (va_wpProof_Add64 dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Add64", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X64.Ins...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Add64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Add64 dst src))
[]
Vale.X64.InsBasic.va_quick_Add64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Add64 dst src)
{ "end_col": 31, "end_line": 119, "start_col": 2, "start_line": 118 }
Prims.Tot
val va_wp_Sub64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Sub64Wrap (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst:va_value_dst_opr64) (va_x_efl:Vale.X64.Flags.t) . let va_sM = va_upd_flags va_x_...
val va_wp_Sub64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Sub64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Ty...
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_dst_opr64 dst va_x_dst va_s0) in va_get_ok va_sM /\ va_eval_dst_opr64 va_sM dst == Vale.Arch....
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Prims.l_Forall", "Vale.X64.Decls.va_value_dst_opr64"...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Sub64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Sub64Wrap
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 40, "end_line": 438, "start_col": 2, "start_line": 433 }
Prims.Tot
val va_quick_Sub64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Sub64Wrap dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Sub64Wrap (dst:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_Sub64Wrap dst src)) = (va_QProc (va_code_Sub64Wrap dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Sub64Wrap dst src) (va_wpProof_Sub64Wrap dst src))
val va_quick_Sub64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Sub64Wrap dst src)) let va_quick_Sub64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Sub64Wrap dst src)) =
false
null
false
(va_QProc (va_code_Sub64Wrap dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Sub64Wrap dst src) (va_wpProof_Sub64Wrap dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Sub64Wrap", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X64...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Sub64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Sub64Wrap dst src))
[]
Vale.X64.InsBasic.va_quick_Sub64Wrap
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Sub64Wrap dst src)
{ "end_col": 40, "end_line": 450, "start_col": 2, "start_line": 449 }
Prims.Tot
val va_quick_AddLea64 (dst: va_operand_dst_opr64) (src1 src2: va_operand_opr64) : (va_quickCode unit (va_code_AddLea64 dst src1 src2))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_AddLea64 (dst:va_operand_dst_opr64) (src1:va_operand_opr64) (src2:va_operand_opr64) : (va_quickCode unit (va_code_AddLea64 dst src1 src2)) = (va_QProc (va_code_AddLea64 dst src1 src2) ([va_mod_dst_opr64 dst]) (va_wp_AddLea64 dst src1 src2) (va_wpProof_AddLea64 dst src1 src2))
val va_quick_AddLea64 (dst: va_operand_dst_opr64) (src1 src2: va_operand_opr64) : (va_quickCode unit (va_code_AddLea64 dst src1 src2)) let va_quick_AddLea64 (dst: va_operand_dst_opr64) (src1 src2: va_operand_opr64) : (va_quickCode unit (va_code_AddLea64 dst src1 src2)) =
false
null
false
(va_QProc (va_code_AddLea64 dst src1 src2) ([va_mod_dst_opr64 dst]) (va_wp_AddLea64 dst src1 src2) (va_wpProof_AddLea64 dst src1 src2))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_AddLea64", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X64.InsBasic.va_wp_AddLea64", "Vale.X64...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_AddLea64 (dst: va_operand_dst_opr64) (src1 src2: va_operand_opr64) : (va_quickCode unit (va_code_AddLea64 dst src1 src2))
[]
Vale.X64.InsBasic.va_quick_AddLea64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src1: Vale.X64.Decls.va_operand_opr64 -> src2: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_AddLea64 dst src1 src2)
{ "end_col": 46, "end_line": 196, "start_col": 2, "start_line": 195 }
Prims.Tot
val va_quick_Adc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adc64 dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Adc64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_Adc64 dst src)) = (va_QProc (va_code_Adc64 dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Adc64 dst src) (va_wpProof_Adc64 dst src))
val va_quick_Adc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adc64 dst src)) let va_quick_Adc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adc64 dst src)) =
false
null
false
(va_QProc (va_code_Adc64 dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Adc64 dst src) (va_wpProof_Adc64 dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Adc64", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X64.Ins...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Adc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adc64 dst src))
[]
Vale.X64.InsBasic.va_quick_Adc64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Adc64 dst src)
{ "end_col": 31, "end_line": 239, "start_col": 2, "start_line": 238 }
Prims.Tot
val va_quick_Adc64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adc64Wrap dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Adc64Wrap (dst:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_Adc64Wrap dst src)) = (va_QProc (va_code_Adc64Wrap dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Adc64Wrap dst src) (va_wpProof_Adc64Wrap dst src))
val va_quick_Adc64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adc64Wrap dst src)) let va_quick_Adc64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adc64Wrap dst src)) =
false
null
false
(va_QProc (va_code_Adc64Wrap dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Adc64Wrap dst src) (va_wpProof_Adc64Wrap dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Adc64Wrap", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X64...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Adc64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adc64Wrap dst src))
[]
Vale.X64.InsBasic.va_quick_Adc64Wrap
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Adc64Wrap dst src)
{ "end_col": 40, "end_line": 283, "start_col": 2, "start_line": 282 }
Prims.Tot
val va_wp_IMul64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_IMul64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ va_mul_nat (va_eval_dst_opr64 va_s0 dst) (va_eval_opr64 va_s0 src) < pow2_64 /\ (forall (va_x_dst...
val va_wp_IMul64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_IMul64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ va_mul_nat (va_eval_dst_opr64 va_s0 dst) (va_eval_opr64 va_s0 src) < pow2_64 /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_dst_opr64 dst va_x_dst va_s0)...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Prims.op_LessThan", "Vale.X64.Decls.va_mul_nat", "...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_IMul64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_IMul64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 95, "end_line": 595, "start_col": 2, "start_line": 591 }
Prims.Tot
val va_wp_And64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_And64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst:va_value_dst_opr64) (va_x_efl:Vale.X64.Flags.t) . let va_sM = va_upd_flags va_x_efl ...
val va_wp_And64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_And64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_dst_opr64 dst va_x_dst va_s0) in va_get_ok va_sM /\ va_eval_dst_opr64 va_sM dst == Vale.Arch....
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Prims.l_Forall", "Vale.X64.Decls.va_value_dst_opr64"...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_And64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_And64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 16, "end_line": 671, "start_col": 2, "start_line": 667 }
Prims.Tot
val va_wp_Shr64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Shr64 (dst:va_operand_dst_opr64) (amt:va_operand_shift_amt64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_shift_amt64 amt va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst:va_value_dst_opr64) (va_x_efl:Vale.X64.Flags.t) . let va_sM = va_upd_fla...
val va_wp_Shr64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Shr64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) ...
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_shift_amt64 amt va_s0 /\ va_get_ok va_s0 /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_dst_opr64 dst va_x_dst va_s0) in va_get_ok va_sM /\ va_eval_dst_opr64 va_sM dst == Vale...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_shift_amt64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_shift_amt64", "Vale.X64.Decls.va_get_ok", "Prims.l_Forall", "Vale.X64.Decls.va_valu...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Shr64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Shr64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> amt: Vale.X64.Decls.va_operand_shift_amt64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 21, "end_line": 745, "start_col": 2, "start_line": 741 }
Prims.Tot
val va_wp_Adcx64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Adcx64Wrap (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ adx_enabled /\ Vale.X64.Decls.valid_cf (va_get_flags va_s0) /\ (forall (va_x_dst:va_value_dst_opr...
val va_wp_Adcx64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Adcx64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : ...
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ adx_enabled /\ Vale.X64.Decls.valid_cf (va_get_flags va_s0) /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_dst_opr64 dst va_x_dst va_s0) in va_get_...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Vale.X64.CPU_Features_s.adx_enabled", "Vale.X64.Decl...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Adcx64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Adcx64Wrap
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 16, "end_line": 317, "start_col": 2, "start_line": 308 }
Prims.Tot
val va_quick_Mul64Wrap (src: va_operand_opr64) : (va_quickCode unit (va_code_Mul64Wrap src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Mul64Wrap (src:va_operand_opr64) : (va_quickCode unit (va_code_Mul64Wrap src)) = (va_QProc (va_code_Mul64Wrap src) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRax; va_Mod_flags]) (va_wp_Mul64Wrap src) (va_wpProof_Mul64Wrap src))
val va_quick_Mul64Wrap (src: va_operand_opr64) : (va_quickCode unit (va_code_Mul64Wrap src)) let va_quick_Mul64Wrap (src: va_operand_opr64) : (va_quickCode unit (va_code_Mul64Wrap src)) =
false
null
false
(va_QProc (va_code_Mul64Wrap src) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRax; va_Mod_flags]) (va_wp_Mul64Wrap src) (va_wpProof_Mul64Wrap src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Mul64Wrap", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_reg64", "Vale.X64.Machine_s.rRdx", "Vale.X64.Machine_s.rRax", "Vale.X64.QuickCode.va_Mod_flags", "Prims.Nil"...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Mul64Wrap (src: va_operand_opr64) : (va_quickCode unit (va_code_Mul64Wrap src))
[]
Vale.X64.InsBasic.va_quick_Mul64Wrap
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Mul64Wrap src)
{ "end_col": 53, "end_line": 528, "start_col": 2, "start_line": 527 }
Prims.Tot
val va_wp_Cpuid_Avx (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Cpuid_Avx (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 1 /\ (forall (va_x_rax:nat64) (va_x_rbx:nat64) (va_x_rcx:nat64) (va_x_rdx:nat64) . let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rbx (va_...
val va_wp_Cpuid_Avx (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Cpuid_Avx (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 1 /\ (forall (va_x_rax: nat64) (va_x_rbx: nat64) (va_x_rcx: nat64) (va_x_rdx: nat64). let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rbx (va_upd_reg64 rRax va_x_rax v...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.op_Equality", "Prims.int", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRax", "Prims.l_Forall", "Vale.X64.Machine_s.nat64", "Prims.l_imp", "Prims.eq2", "Prims.bool", "Prims.op_G...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Cpuid_Avx (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Cpuid_Avx
{ "file_name": "obj/Vale.X64.InsBasic.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": 16, "end_line": 880, "start_col": 2, "start_line": 876 }
Prims.Tot
val va_quick_Sub64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Sub64 dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Sub64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_Sub64 dst src)) = (va_QProc (va_code_Sub64 dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Sub64 dst src) (va_wpProof_Sub64 dst src))
val va_quick_Sub64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Sub64 dst src)) let va_quick_Sub64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Sub64 dst src)) =
false
null
false
(va_QProc (va_code_Sub64 dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Sub64 dst src) (va_wpProof_Sub64 dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Sub64", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X64.Ins...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Sub64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Sub64 dst src))
[]
Vale.X64.InsBasic.va_quick_Sub64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Sub64 dst src)
{ "end_col": 31, "end_line": 412, "start_col": 2, "start_line": 411 }
Prims.Tot
val va_wp_Sbb64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Sbb64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ Vale.X64.Decls.valid_cf (va_get_flags va_s0) /\ (forall (va_x_dst:va_value_dst_opr64) (va_x_efl:Va...
val va_wp_Sbb64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Sbb64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ Vale.X64.Decls.valid_cf (va_get_flags va_s0) /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_dst_opr64 dst va_x_dst va_s0) in va_get_ok va_sM /\ ...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Vale.X64.Decls.valid_cf", "Vale.X64.Decls.va_get_fla...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Sbb64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Sbb64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 21, "end_line": 482, "start_col": 2, "start_line": 474 }
Prims.Tot
val va_quick_Mulx64 (dst_hi dst_lo: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Mulx64 dst_hi dst_lo src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Mulx64 (dst_hi:va_operand_dst_opr64) (dst_lo:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_Mulx64 dst_hi dst_lo src)) = (va_QProc (va_code_Mulx64 dst_hi dst_lo src) ([va_mod_dst_opr64 dst_lo; va_mod_dst_opr64 dst_hi]) (va_wp_Mulx64 dst_hi dst_lo src) (va_wpProof_Mulx64 ...
val va_quick_Mulx64 (dst_hi dst_lo: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Mulx64 dst_hi dst_lo src)) let va_quick_Mulx64 (dst_hi dst_lo: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Mulx64 dst_hi dst_lo src)) =
false
null
false
(va_QProc (va_code_Mulx64 dst_hi dst_lo src) ([va_mod_dst_opr64 dst_lo; va_mod_dst_opr64 dst_hi]) (va_wp_Mulx64 dst_hi dst_lo src) (va_wpProof_Mulx64 dst_hi dst_lo src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Mulx64", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X64.InsBasic.va_wp_Mulx64", "Vale.X64.Ins...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Mulx64 (dst_hi dst_lo: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Mulx64 dst_hi dst_lo src))
[]
Vale.X64.InsBasic.va_quick_Mulx64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst_hi: Vale.X64.Decls.va_operand_dst_opr64 -> dst_lo: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Mulx64 dst_hi dst_lo src)
{ "end_col": 75, "end_line": 570, "start_col": 2, "start_line": 569 }
Prims.Tot
val va_wp_Cpuid_AES (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Cpuid_AES (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 1 /\ (forall (va_x_rax:nat64) (va_x_rbx:nat64) (va_x_rcx:nat64) (va_x_rdx:nat64) . let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rbx (va_...
val va_wp_Cpuid_AES (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Cpuid_AES (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 1 /\ (forall (va_x_rax: nat64) (va_x_rbx: nat64) (va_x_rcx: nat64) (va_x_rdx: nat64). let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rbx (va_upd_reg64 rRax va_x_rax v...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.op_Equality", "Prims.int", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRax", "Prims.l_Forall", "Vale.X64.Machine_s.nat64", "Prims.l_imp", "Prims.eq2", "Prims.bool", "Prims.op_G...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Cpuid_AES (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Cpuid_AES
{ "file_name": "obj/Vale.X64.InsBasic.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": 10, "end_line": 781, "start_col": 2, "start_line": 776 }
Prims.Tot
val va_quick_Shr64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) : (va_quickCode unit (va_code_Shr64 dst amt))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Shr64 (dst:va_operand_dst_opr64) (amt:va_operand_shift_amt64) : (va_quickCode unit (va_code_Shr64 dst amt)) = (va_QProc (va_code_Shr64 dst amt) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Shr64 dst amt) (va_wpProof_Shr64 dst amt))
val va_quick_Shr64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) : (va_quickCode unit (va_code_Shr64 dst amt)) let va_quick_Shr64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) : (va_quickCode unit (va_code_Shr64 dst amt)) =
false
null
false
(va_QProc (va_code_Shr64 dst amt) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Shr64 dst amt) (va_wpProof_Shr64 dst amt))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_shift_amt64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Shr64", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Shr64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) : (va_quickCode unit (va_code_Shr64 dst amt))
[]
Vale.X64.InsBasic.va_quick_Shr64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> amt: Vale.X64.Decls.va_operand_shift_amt64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Shr64 dst amt)
{ "end_col": 31, "end_line": 757, "start_col": 2, "start_line": 756 }
Prims.Tot
val va_quick_Shl64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) : (va_quickCode unit (va_code_Shl64 dst amt))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Shl64 (dst:va_operand_dst_opr64) (amt:va_operand_shift_amt64) : (va_quickCode unit (va_code_Shl64 dst amt)) = (va_QProc (va_code_Shl64 dst amt) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Shl64 dst amt) (va_wpProof_Shl64 dst amt))
val va_quick_Shl64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) : (va_quickCode unit (va_code_Shl64 dst amt)) let va_quick_Shl64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) : (va_quickCode unit (va_code_Shl64 dst amt)) =
false
null
false
(va_QProc (va_code_Shl64 dst amt) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Shl64 dst amt) (va_wpProof_Shl64 dst amt))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_shift_amt64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Shl64", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Shl64 (dst: va_operand_dst_opr64) (amt: va_operand_shift_amt64) : (va_quickCode unit (va_code_Shl64 dst amt))
[]
Vale.X64.InsBasic.va_quick_Shl64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> amt: Vale.X64.Decls.va_operand_shift_amt64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Shl64 dst amt)
{ "end_col": 31, "end_line": 720, "start_col": 2, "start_line": 719 }
Prims.Tot
val va_quick_And64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_And64 dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_And64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_And64 dst src)) = (va_QProc (va_code_And64 dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_And64 dst src) (va_wpProof_And64 dst src))
val va_quick_And64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_And64 dst src)) let va_quick_And64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_And64 dst src)) =
false
null
false
(va_QProc (va_code_And64 dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_And64 dst src) (va_wpProof_And64 dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_And64", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X64.Ins...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_And64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_And64 dst src))
[]
Vale.X64.InsBasic.va_quick_And64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_And64 dst src)
{ "end_col": 31, "end_line": 683, "start_col": 2, "start_line": 682 }
Prims.Tot
val va_quick_Cpuid_Sha: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Sha ()))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Cpuid_Sha () : (va_quickCode unit (va_code_Cpuid_Sha ())) = (va_QProc (va_code_Cpuid_Sha ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Sha va_wpProof_Cpuid_Sha)
val va_quick_Cpuid_Sha: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Sha ())) let va_quick_Cpuid_Sha () : (va_quickCode unit (va_code_Cpuid_Sha ())) =
false
null
false
(va_QProc (va_code_Cpuid_Sha ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Sha va_wpProof_Cpuid_Sha)
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.unit", "Vale.X64.QuickCode.va_QProc", "Vale.X64.InsBasic.va_code_Cpuid_Sha", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_reg64", "Vale.X64.Machine_s.rRdx", "Vale.X64.Machine_s.rRcx", "Vale.X64.Machine_s.rRbx", "Vale.X64.Machine_s.rRax", "Prims.Nil", "Vale.X64.In...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Cpuid_Sha: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Sha ()))
[]
Vale.X64.InsBasic.va_quick_Cpuid_Sha
{ "file_name": "obj/Vale.X64.InsBasic.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.X64.InsBasic.va_code_Cpuid_Sha ())
{ "end_col": 61, "end_line": 823, "start_col": 2, "start_line": 822 }
Prims.Tot
val va_quick_Cpuid_Avx2: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Avx2 ()))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Cpuid_Avx2 () : (va_quickCode unit (va_code_Cpuid_Avx2 ())) = (va_QProc (va_code_Cpuid_Avx2 ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Avx2 va_wpProof_Cpuid_Avx2)
val va_quick_Cpuid_Avx2: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Avx2 ())) let va_quick_Cpuid_Avx2 () : (va_quickCode unit (va_code_Cpuid_Avx2 ())) =
false
null
false
(va_QProc (va_code_Cpuid_Avx2 ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Avx2 va_wpProof_Cpuid_Avx2)
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.unit", "Vale.X64.QuickCode.va_QProc", "Vale.X64.InsBasic.va_code_Cpuid_Avx2", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_reg64", "Vale.X64.Machine_s.rRdx", "Vale.X64.Machine_s.rRcx", "Vale.X64.Machine_s.rRbx", "Vale.X64.Machine_s.rRax", "Prims.Nil", "Vale.X64.I...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Cpuid_Avx2: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Avx2 ()))
[]
Vale.X64.InsBasic.va_quick_Cpuid_Avx2
{ "file_name": "obj/Vale.X64.InsBasic.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.X64.InsBasic.va_code_Cpuid_Avx2 ())
{ "end_col": 63, "end_line": 922, "start_col": 2, "start_line": 921 }
Prims.Tot
val va_quick_Cpuid_Avx512: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Avx512 ()))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Cpuid_Avx512 () : (va_quickCode unit (va_code_Cpuid_Avx512 ())) = (va_QProc (va_code_Cpuid_Avx512 ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Avx512 va_wpProof_Cpuid_Avx512)
val va_quick_Cpuid_Avx512: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Avx512 ())) let va_quick_Cpuid_Avx512 () : (va_quickCode unit (va_code_Cpuid_Avx512 ())) =
false
null
false
(va_QProc (va_code_Cpuid_Avx512 ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Avx512 va_wpProof_Cpuid_Avx512)
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.unit", "Vale.X64.QuickCode.va_QProc", "Vale.X64.InsBasic.va_code_Cpuid_Avx512", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_reg64", "Vale.X64.Machine_s.rRdx", "Vale.X64.Machine_s.rRcx", "Vale.X64.Machine_s.rRbx", "Vale.X64.Machine_s.rRax", "Prims.Nil", "Vale.X64...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Cpuid_Avx512: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Avx512 ()))
[]
Vale.X64.InsBasic.va_quick_Cpuid_Avx512
{ "file_name": "obj/Vale.X64.InsBasic.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.X64.InsBasic.va_code_Cpuid_Avx512 ())
{ "end_col": 67, "end_line": 1059, "start_col": 2, "start_line": 1058 }
Prims.Tot
val va_quick_Cpuid_Sse: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Sse ()))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Cpuid_Sse () : (va_quickCode unit (va_code_Cpuid_Sse ())) = (va_QProc (va_code_Cpuid_Sse ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Sse va_wpProof_Cpuid_Sse)
val va_quick_Cpuid_Sse: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Sse ())) let va_quick_Cpuid_Sse () : (va_quickCode unit (va_code_Cpuid_Sse ())) =
false
null
false
(va_QProc (va_code_Cpuid_Sse ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Sse va_wpProof_Cpuid_Sse)
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.unit", "Vale.X64.QuickCode.va_QProc", "Vale.X64.InsBasic.va_code_Cpuid_Sse", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_reg64", "Vale.X64.Machine_s.rRdx", "Vale.X64.Machine_s.rRcx", "Vale.X64.Machine_s.rRbx", "Vale.X64.Machine_s.rRax", "Prims.Nil", "Vale.X64.In...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Cpuid_Sse: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Sse ()))
[]
Vale.X64.InsBasic.va_quick_Cpuid_Sse
{ "file_name": "obj/Vale.X64.InsBasic.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.X64.InsBasic.va_code_Cpuid_Sse ())
{ "end_col": 61, "end_line": 957, "start_col": 2, "start_line": 956 }
Prims.Tot
val va_quick_Cpuid_AES: Prims.unit -> (va_quickCode unit (va_code_Cpuid_AES ()))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Cpuid_AES () : (va_quickCode unit (va_code_Cpuid_AES ())) = (va_QProc (va_code_Cpuid_AES ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_AES va_wpProof_Cpuid_AES)
val va_quick_Cpuid_AES: Prims.unit -> (va_quickCode unit (va_code_Cpuid_AES ())) let va_quick_Cpuid_AES () : (va_quickCode unit (va_code_Cpuid_AES ())) =
false
null
false
(va_QProc (va_code_Cpuid_AES ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_AES va_wpProof_Cpuid_AES)
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.unit", "Vale.X64.QuickCode.va_QProc", "Vale.X64.InsBasic.va_code_Cpuid_AES", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_reg64", "Vale.X64.Machine_s.rRdx", "Vale.X64.Machine_s.rRcx", "Vale.X64.Machine_s.rRbx", "Vale.X64.Machine_s.rRax", "Prims.Nil", "Vale.X64.In...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Cpuid_AES: Prims.unit -> (va_quickCode unit (va_code_Cpuid_AES ()))
[]
Vale.X64.InsBasic.va_quick_Cpuid_AES
{ "file_name": "obj/Vale.X64.InsBasic.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.X64.InsBasic.va_code_Cpuid_AES ())
{ "end_col": 61, "end_line": 791, "start_col": 2, "start_line": 790 }
Prims.Tot
val va_quick_Cpuid_Adx_Bmi2: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Adx_Bmi2 ()))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Cpuid_Adx_Bmi2 () : (va_quickCode unit (va_code_Cpuid_Adx_Bmi2 ())) = (va_QProc (va_code_Cpuid_Adx_Bmi2 ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Adx_Bmi2 va_wpProof_Cpuid_Adx_Bmi2)
val va_quick_Cpuid_Adx_Bmi2: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Adx_Bmi2 ())) let va_quick_Cpuid_Adx_Bmi2 () : (va_quickCode unit (va_code_Cpuid_Adx_Bmi2 ())) =
false
null
false
(va_QProc (va_code_Cpuid_Adx_Bmi2 ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Adx_Bmi2 va_wpProof_Cpuid_Adx_Bmi2)
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.unit", "Vale.X64.QuickCode.va_QProc", "Vale.X64.InsBasic.va_code_Cpuid_Adx_Bmi2", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_reg64", "Vale.X64.Machine_s.rRdx", "Vale.X64.Machine_s.rRcx", "Vale.X64.Machine_s.rRbx", "Vale.X64.Machine_s.rRax", "Prims.Nil", "Vale.X...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Cpuid_Adx_Bmi2: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Adx_Bmi2 ()))
[]
Vale.X64.InsBasic.va_quick_Cpuid_Adx_Bmi2
{ "file_name": "obj/Vale.X64.InsBasic.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.X64.InsBasic.va_code_Cpuid_Adx_Bmi2 ())
{ "end_col": 71, "end_line": 858, "start_col": 2, "start_line": 857 }
Prims.Tot
val va_quick_LargeComment (c: string) : (va_quickCode unit (va_code_LargeComment c))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_LargeComment (c:string) : (va_quickCode unit (va_code_LargeComment c)) = (va_QProc (va_code_LargeComment c) ([]) (va_wp_LargeComment c) (va_wpProof_LargeComment c))
val va_quick_LargeComment (c: string) : (va_quickCode unit (va_code_LargeComment c)) let va_quick_LargeComment (c: string) : (va_quickCode unit (va_code_LargeComment c)) =
false
null
false
(va_QProc (va_code_LargeComment c) ([]) (va_wp_LargeComment c) (va_wpProof_LargeComment c))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.string", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_LargeComment", "Prims.Nil", "Vale.X64.QuickCode.mod_t", "Vale.X64.InsBasic.va_wp_LargeComment", "Vale.X64.InsBasic.va_wpProof_LargeComment", "Vale.X64.QuickCode.va_quickCode" ]
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_LargeComment (c: string) : (va_quickCode unit (va_code_LargeComment c))
[]
Vale.X64.InsBasic.va_quick_LargeComment
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
c: Prims.string -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_LargeComment c)
{ "end_col": 93, "end_line": 1245, "start_col": 2, "start_line": 1245 }
Prims.Tot
val va_quick_Cpuid_Rdrand: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Rdrand ()))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Cpuid_Rdrand () : (va_quickCode unit (va_code_Cpuid_Rdrand ())) = (va_QProc (va_code_Cpuid_Rdrand ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Rdrand va_wpProof_Cpuid_Rdrand)
val va_quick_Cpuid_Rdrand: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Rdrand ())) let va_quick_Cpuid_Rdrand () : (va_quickCode unit (va_code_Cpuid_Rdrand ())) =
false
null
false
(va_QProc (va_code_Cpuid_Rdrand ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Rdrand va_wpProof_Cpuid_Rdrand)
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.unit", "Vale.X64.QuickCode.va_QProc", "Vale.X64.InsBasic.va_code_Cpuid_Rdrand", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_reg64", "Vale.X64.Machine_s.rRdx", "Vale.X64.Machine_s.rRcx", "Vale.X64.Machine_s.rRbx", "Vale.X64.Machine_s.rRax", "Prims.Nil", "Vale.X64...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Cpuid_Rdrand: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Rdrand ()))
[]
Vale.X64.InsBasic.va_quick_Cpuid_Rdrand
{ "file_name": "obj/Vale.X64.InsBasic.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.X64.InsBasic.va_code_Cpuid_Rdrand ())
{ "end_col": 67, "end_line": 1021, "start_col": 2, "start_line": 1020 }
Prims.Tot
val va_quick_Nat64Equal (dst src: va_operand_reg_opr64) : (va_quickCode unit (va_code_Nat64Equal dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Nat64Equal (dst:va_operand_reg_opr64) (src:va_operand_reg_opr64) : (va_quickCode unit (va_code_Nat64Equal dst src)) = (va_QProc (va_code_Nat64Equal dst src) ([va_Mod_flags; va_mod_reg_opr64 src; va_mod_reg_opr64 dst]) (va_wp_Nat64Equal dst src) (va_wpProof_Nat64Equal dst src))
val va_quick_Nat64Equal (dst src: va_operand_reg_opr64) : (va_quickCode unit (va_code_Nat64Equal dst src)) let va_quick_Nat64Equal (dst src: va_operand_reg_opr64) : (va_quickCode unit (va_code_Nat64Equal dst src)) =
false
null
false
(va_QProc (va_code_Nat64Equal dst src) ([va_Mod_flags; va_mod_reg_opr64 src; va_mod_reg_opr64 dst]) (va_wp_Nat64Equal dst src) (va_wpProof_Nat64Equal dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_reg_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Nat64Equal", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_reg_opr64", "Prims.Nil", "Vale.X64.InsBasic.va_wp_Nat64Equal", "Vale...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Nat64Equal (dst src: va_operand_reg_opr64) : (va_quickCode unit (va_code_Nat64Equal dst src))
[]
Vale.X64.InsBasic.va_quick_Nat64Equal
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_reg_opr64 -> src: Vale.X64.Decls.va_operand_reg_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Nat64Equal dst src)
{ "end_col": 69, "end_line": 1197, "start_col": 2, "start_line": 1196 }
Prims.Tot
val va_quick_Xgetbv_Avx512: Prims.unit -> (va_quickCode unit (va_code_Xgetbv_Avx512 ()))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Xgetbv_Avx512 () : (va_quickCode unit (va_code_Xgetbv_Avx512 ())) = (va_QProc (va_code_Xgetbv_Avx512 ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRax]) va_wp_Xgetbv_Avx512 va_wpProof_Xgetbv_Avx512)
val va_quick_Xgetbv_Avx512: Prims.unit -> (va_quickCode unit (va_code_Xgetbv_Avx512 ())) let va_quick_Xgetbv_Avx512 () : (va_quickCode unit (va_code_Xgetbv_Avx512 ())) =
false
null
false
(va_QProc (va_code_Xgetbv_Avx512 ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRax]) va_wp_Xgetbv_Avx512 va_wpProof_Xgetbv_Avx512)
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.unit", "Vale.X64.QuickCode.va_QProc", "Vale.X64.InsBasic.va_code_Xgetbv_Avx512", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_reg64", "Vale.X64.Machine_s.rRdx", "Vale.X64.Machine_s.rRax", "Prims.Nil", "Vale.X64.InsBasic.va_wp_Xgetbv_Avx512", "Vale.X64.InsBasic.va_w...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Xgetbv_Avx512: Prims.unit -> (va_quickCode unit (va_code_Xgetbv_Avx512 ()))
[]
Vale.X64.InsBasic.va_quick_Xgetbv_Avx512
{ "file_name": "obj/Vale.X64.InsBasic.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.X64.InsBasic.va_code_Xgetbv_Avx512 ())
{ "end_col": 29, "end_line": 1158, "start_col": 2, "start_line": 1157 }
Prims.Tot
val va_quick_Xgetbv_Avx: Prims.unit -> (va_quickCode unit (va_code_Xgetbv_Avx ()))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Xgetbv_Avx () : (va_quickCode unit (va_code_Xgetbv_Avx ())) = (va_QProc (va_code_Xgetbv_Avx ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRax]) va_wp_Xgetbv_Avx va_wpProof_Xgetbv_Avx)
val va_quick_Xgetbv_Avx: Prims.unit -> (va_quickCode unit (va_code_Xgetbv_Avx ())) let va_quick_Xgetbv_Avx () : (va_quickCode unit (va_code_Xgetbv_Avx ())) =
false
null
false
(va_QProc (va_code_Xgetbv_Avx ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRax]) va_wp_Xgetbv_Avx va_wpProof_Xgetbv_Avx)
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.unit", "Vale.X64.QuickCode.va_QProc", "Vale.X64.InsBasic.va_code_Xgetbv_Avx", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_reg64", "Vale.X64.Machine_s.rRdx", "Vale.X64.Machine_s.rRax", "Prims.Nil", "Vale.X64.InsBasic.va_wp_Xgetbv_Avx", "Vale.X64.InsBasic.va_wpProof...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Xgetbv_Avx: Prims.unit -> (va_quickCode unit (va_code_Xgetbv_Avx ()))
[]
Vale.X64.InsBasic.va_quick_Xgetbv_Avx
{ "file_name": "obj/Vale.X64.InsBasic.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.X64.InsBasic.va_code_Xgetbv_Avx ())
{ "end_col": 26, "end_line": 1123, "start_col": 2, "start_line": 1122 }
Prims.Tot
val va_quick_Cpuid_Movbe: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Movbe ()))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Cpuid_Movbe () : (va_quickCode unit (va_code_Cpuid_Movbe ())) = (va_QProc (va_code_Cpuid_Movbe ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Movbe va_wpProof_Cpuid_Movbe)
val va_quick_Cpuid_Movbe: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Movbe ())) let va_quick_Cpuid_Movbe () : (va_quickCode unit (va_code_Cpuid_Movbe ())) =
false
null
false
(va_QProc (va_code_Cpuid_Movbe ()) ([va_Mod_reg64 rRdx; va_Mod_reg64 rRcx; va_Mod_reg64 rRbx; va_Mod_reg64 rRax]) va_wp_Cpuid_Movbe va_wpProof_Cpuid_Movbe)
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.unit", "Vale.X64.QuickCode.va_QProc", "Vale.X64.InsBasic.va_code_Cpuid_Movbe", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_reg64", "Vale.X64.Machine_s.rRdx", "Vale.X64.Machine_s.rRcx", "Vale.X64.Machine_s.rRbx", "Vale.X64.Machine_s.rRax", "Prims.Nil", "Vale.X64....
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Cpuid_Movbe: Prims.unit -> (va_quickCode unit (va_code_Cpuid_Movbe ()))
[]
Vale.X64.InsBasic.va_quick_Cpuid_Movbe
{ "file_name": "obj/Vale.X64.InsBasic.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.X64.InsBasic.va_code_Cpuid_Movbe ())
{ "end_col": 65, "end_line": 989, "start_col": 2, "start_line": 988 }
Prims.Tot
val va_quick_Comment (c: string) : (va_quickCode unit (va_code_Comment c))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Comment (c:string) : (va_quickCode unit (va_code_Comment c)) = (va_QProc (va_code_Comment c) ([]) (va_wp_Comment c) (va_wpProof_Comment c))
val va_quick_Comment (c: string) : (va_quickCode unit (va_code_Comment c)) let va_quick_Comment (c: string) : (va_quickCode unit (va_code_Comment c)) =
false
null
false
(va_QProc (va_code_Comment c) ([]) (va_wp_Comment c) (va_wpProof_Comment c))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.string", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Comment", "Prims.Nil", "Vale.X64.QuickCode.mod_t", "Vale.X64.InsBasic.va_wp_Comment", "Vale.X64.InsBasic.va_wpProof_Comment", "Vale.X64.QuickCode.va_quickCode" ]
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Comment (c: string) : (va_quickCode unit (va_code_Comment c))
[]
Vale.X64.InsBasic.va_quick_Comment
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
c: Prims.string -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Comment c)
{ "end_col": 78, "end_line": 1221, "start_col": 2, "start_line": 1221 }
Prims.Tot
val va_quick_Space (n: nat) : (va_quickCode unit (va_code_Space n))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Space (n:nat) : (va_quickCode unit (va_code_Space n)) = (va_QProc (va_code_Space n) ([]) (va_wp_Space n) (va_wpProof_Space n))
val va_quick_Space (n: nat) : (va_quickCode unit (va_code_Space n)) let va_quick_Space (n: nat) : (va_quickCode unit (va_code_Space n)) =
false
null
false
(va_QProc (va_code_Space n) ([]) (va_wp_Space n) (va_wpProof_Space n))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.nat", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Space", "Prims.Nil", "Vale.X64.QuickCode.mod_t", "Vale.X64.InsBasic.va_wp_Space", "Vale.X64.InsBasic.va_wpProof_Space", "Vale.X64.QuickCode.va_quickCode" ]
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Space (n: nat) : (va_quickCode unit (va_code_Space n))
[]
Vale.X64.InsBasic.va_quick_Space
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
n: Prims.nat -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Space n)
{ "end_col": 72, "end_line": 1317, "start_col": 2, "start_line": 1317 }
Prims.Tot
val va_quick_Prefetchnta (v: va_operand_opr64) : (va_quickCode unit (va_code_Prefetchnta v))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Prefetchnta (v:va_operand_opr64) : (va_quickCode unit (va_code_Prefetchnta v)) = (va_QProc (va_code_Prefetchnta v) ([]) (va_wp_Prefetchnta v) (va_wpProof_Prefetchnta v))
val va_quick_Prefetchnta (v: va_operand_opr64) : (va_quickCode unit (va_code_Prefetchnta v)) let va_quick_Prefetchnta (v: va_operand_opr64) : (va_quickCode unit (va_code_Prefetchnta v)) =
false
null
false
(va_QProc (va_code_Prefetchnta v) ([]) (va_wp_Prefetchnta v) (va_wpProof_Prefetchnta v))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Prefetchnta", "Prims.Nil", "Vale.X64.QuickCode.mod_t", "Vale.X64.InsBasic.va_wp_Prefetchnta", "Vale.X64.InsBasic.va_wpProof_Prefetchnta", "Vale.X64.QuickCode.va_quickCode" ]
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Prefetchnta (v: va_operand_opr64) : (va_quickCode unit (va_code_Prefetchnta v))
[]
Vale.X64.InsBasic.va_quick_Prefetchnta
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
v: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Prefetchnta v)
{ "end_col": 90, "end_line": 1345, "start_col": 2, "start_line": 1345 }
Prims.Tot
val va_wp_Cpuid_Avx2 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Cpuid_Avx2 (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 7 /\ va_get_reg64 rRcx va_s0 = 0 /\ (forall (va_x_rax:nat64) (va_x_rbx:nat64) (va_x_rcx:nat64) (va_x_rdx:nat64) . let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx ...
val va_wp_Cpuid_Avx2 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Cpuid_Avx2 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 7 /\ va_get_reg64 rRcx va_s0 = 0 /\ (forall (va_x_rax: nat64) (va_x_rbx: nat64) (va_x_rcx: nat64) (va_x_rdx: nat64). let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rb...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.op_Equality", "Prims.int", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRax", "Vale.X64.Machine_s.rRcx", "Prims.l_Forall", "Vale.X64.Machine_s.nat64", "Prims.l_imp", "Prims.eq2", ...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Cpuid_Avx2 (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Cpuid_Avx2
{ "file_name": "obj/Vale.X64.InsBasic.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": 47, "end_line": 912, "start_col": 2, "start_line": 908 }
Prims.Tot
val va_wp_Cpuid_Rdrand (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Cpuid_Rdrand (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 1 /\ (forall (va_x_rax:nat64) (va_x_rbx:nat64) (va_x_rcx:nat64) (va_x_rdx:nat64) . let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rbx (...
val va_wp_Cpuid_Rdrand (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Cpuid_Rdrand (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 1 /\ (forall (va_x_rax: nat64) (va_x_rbx: nat64) (va_x_rcx: nat64) (va_x_rdx: nat64). let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rbx (va_upd_reg64 rRax va_x_rax v...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.op_Equality", "Prims.int", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRax", "Prims.l_Forall", "Vale.X64.Machine_s.nat64", "Prims.l_imp", "Prims.eq2", "Prims.bool", "Prims.op_G...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Cpuid_Rdrand (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Cpuid_Rdrand
{ "file_name": "obj/Vale.X64.InsBasic.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": 16, "end_line": 1011, "start_col": 2, "start_line": 1007 }
Prims.Tot
val va_quick_Mov64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Mov64 dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Mov64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_Mov64 dst src)) = (va_QProc (va_code_Mov64 dst src) ([va_mod_dst_opr64 dst]) (va_wp_Mov64 dst src) (va_wpProof_Mov64 dst src))
val va_quick_Mov64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Mov64 dst src)) let va_quick_Mov64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Mov64 dst src)) =
false
null
false
(va_QProc (va_code_Mov64 dst src) ([va_mod_dst_opr64 dst]) (va_wp_Mov64 dst src) (va_wpProof_Mov64 dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Mov64", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X64.InsBasic.va_wp_Mov64", "Vale.X64.InsBa...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Mov64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Mov64 dst src))
[]
Vale.X64.InsBasic.va_quick_Mov64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Mov64 dst src)
{ "end_col": 31, "end_line": 44, "start_col": 2, "start_line": 43 }
Prims.Tot
val va_wp_Cpuid_Osxsave (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Cpuid_Osxsave (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 1 /\ (forall (va_x_rax:nat64) (va_x_rbx:nat64) (va_x_rcx:nat64) (va_x_rdx:nat64) . let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rbx ...
val va_wp_Cpuid_Osxsave (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Cpuid_Osxsave (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ va_get_reg64 rRax va_s0 = 1 /\ (forall (va_x_rax: nat64) (va_x_rbx: nat64) (va_x_rcx: nat64) (va_x_rdx: nat64). let va_sM = va_upd_reg64 rRdx va_x_rdx (va_upd_reg64 rRcx va_x_rcx (va_upd_reg64 rRbx va_x_rbx (va_upd_reg64 rRax va_x_rax v...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.op_Equality", "Prims.int", "Vale.X64.Decls.va_get_reg64", "Vale.X64.Machine_s.rRax", "Prims.l_Forall", "Vale.X64.Machine_s.nat64", "Prims.l_imp", "Prims.eq2", "Prims.bool", "Prims.op_G...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Cpuid_Osxsave (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Cpuid_Osxsave
{ "file_name": "obj/Vale.X64.InsBasic.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": 16, "end_line": 1081, "start_col": 2, "start_line": 1077 }
Prims.Tot
val va_wp_Cmovc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Cmovc64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ Vale.X64.Decls.valid_cf (va_get_flags va_s0) /\ (forall (va_x_dst:va_value_dst_opr64) . let va_s...
val va_wp_Cmovc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Cmovc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 ...
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ Vale.X64.Decls.valid_cf (va_get_flags va_s0) /\ (forall (va_x_dst: va_value_dst_opr64). let va_sM = va_upd_operand_dst_opr64 dst va_x_dst va_s0 in va_get_ok va_sM /\ va_if (Vale.X64.Decls.cf (va_get_flags va_sM)) ...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Vale.X64.Decls.valid_cf", "Vale.X64.Decls.va_get_fla...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Cmovc64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Cmovc64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 10, "end_line": 70, "start_col": 2, "start_line": 65 }
Prims.Tot
val va_quick_Add64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Add64Wrap dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Add64Wrap (dst:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_Add64Wrap dst src)) = (va_QProc (va_code_Add64Wrap dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Add64Wrap dst src) (va_wpProof_Add64Wrap dst src))
val va_quick_Add64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Add64Wrap dst src)) let va_quick_Add64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Add64Wrap dst src)) =
false
null
false
(va_QProc (va_code_Add64Wrap dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Add64Wrap dst src) (va_wpProof_Add64Wrap dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Add64Wrap", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X64...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Add64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Add64Wrap dst src))
[]
Vale.X64.InsBasic.va_quick_Add64Wrap
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Add64Wrap dst src)
{ "end_col": 40, "end_line": 157, "start_col": 2, "start_line": 156 }
Prims.Tot
val va_wp_Adc64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Adc64Wrap (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ Vale.X64.Decls.valid_cf (va_get_flags va_s0) /\ (forall (va_x_dst:va_value_dst_opr64) (va_x_ef...
val va_wp_Adc64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Adc64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Ty...
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ Vale.X64.Decls.valid_cf (va_get_flags va_s0) /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_dst_opr64 dst va_x_dst va_s0) in va_get_ok va_sM /\ ...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Vale.X64.Decls.valid_cf", "Vale.X64.Decls.va_get_fla...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Adc64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Adc64Wrap
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 34, "end_line": 271, "start_col": 2, "start_line": 263 }
Prims.Tot
val va_quick_Adcx64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adcx64Wrap dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Adcx64Wrap (dst:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_Adcx64Wrap dst src)) = (va_QProc (va_code_Adcx64Wrap dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Adcx64Wrap dst src) (va_wpProof_Adcx64Wrap dst src))
val va_quick_Adcx64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adcx64Wrap dst src)) let va_quick_Adcx64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adcx64Wrap dst src)) =
false
null
false
(va_QProc (va_code_Adcx64Wrap dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Adcx64Wrap dst src) (va_wpProof_Adcx64Wrap dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Adcx64Wrap", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X6...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Adcx64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adcx64Wrap dst src))
[]
Vale.X64.InsBasic.va_quick_Adcx64Wrap
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Adcx64Wrap dst src)
{ "end_col": 45, "end_line": 329, "start_col": 2, "start_line": 328 }
Prims.Tot
val va_wp_LargeComment (c: string) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_LargeComment (c:string) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_get_ok va_s0 /\ (let va_sM = va_s0 in va_get_ok va_sM ==> va_k va_sM (())))
val va_wp_LargeComment (c: string) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_LargeComment (c: string) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 =
false
null
false
(va_get_ok va_s0 /\ (let va_sM = va_s0 in va_get_ok va_sM ==> va_k va_sM (())))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Prims.string", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_get_ok", "Prims.l_imp", "Vale.X64.State.vale_state" ]
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_LargeComment (c: string) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_LargeComment
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
c: Prims.string -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 81, "end_line": 1236, "start_col": 2, "start_line": 1236 }
Prims.Tot
val va_quick_Adox64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adox64Wrap dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Adox64Wrap (dst:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_Adox64Wrap dst src)) = (va_QProc (va_code_Adox64Wrap dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Adox64Wrap dst src) (va_wpProof_Adox64Wrap dst src))
val va_quick_Adox64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adox64Wrap dst src)) let va_quick_Adox64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adox64Wrap dst src)) =
false
null
false
(va_QProc (va_code_Adox64Wrap dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Adox64Wrap dst src) (va_wpProof_Adox64Wrap dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Adox64Wrap", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X6...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Adox64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Adox64Wrap dst src))
[]
Vale.X64.InsBasic.va_quick_Adox64Wrap
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Adox64Wrap dst src)
{ "end_col": 45, "end_line": 375, "start_col": 2, "start_line": 374 }
Prims.Tot
val va_wp_Adox64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_wp_Adox64Wrap (dst:va_operand_dst_opr64) (src:va_operand_opr64) (va_s0:va_state) (va_k:(va_state -> unit -> Type0)) : Type0 = (va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ adx_enabled /\ Vale.X64.Decls.valid_of (va_get_flags va_s0) /\ (forall (va_x_dst:va_value_dst_opr...
val va_wp_Adox64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0 let va_wp_Adox64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : ...
false
null
false
(va_is_dst_dst_opr64 dst va_s0 /\ va_is_src_opr64 src va_s0 /\ va_get_ok va_s0 /\ adx_enabled /\ Vale.X64.Decls.valid_of (va_get_flags va_s0) /\ (forall (va_x_dst: va_value_dst_opr64) (va_x_efl: Vale.X64.Flags.t). let va_sM = va_upd_flags va_x_efl (va_upd_operand_dst_opr64 dst va_x_dst va_s0) in va_get_...
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.Decls.va_state", "Prims.unit", "Prims.l_and", "Prims.b2t", "Vale.X64.Decls.va_is_dst_dst_opr64", "Vale.X64.Decls.va_is_src_opr64", "Vale.X64.Decls.va_get_ok", "Vale.X64.CPU_Features_s.adx_enabled", "Vale.X64.Decl...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
true
Vale.X64.InsBasic.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_Adox64Wrap (dst: va_operand_dst_opr64) (src: va_operand_opr64) (va_s0: va_state) (va_k: (va_state -> unit -> Type0)) : Type0
[]
Vale.X64.InsBasic.va_wp_Adox64Wrap
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> va_s0: Vale.X64.Decls.va_state -> va_k: (_: Vale.X64.Decls.va_state -> _: Prims.unit -> Type0) -> Type0
{ "end_col": 16, "end_line": 363, "start_col": 2, "start_line": 354 }
Prims.Tot
val va_quick_Sbb64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Sbb64 dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_Sbb64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_Sbb64 dst src)) = (va_QProc (va_code_Sbb64 dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Sbb64 dst src) (va_wpProof_Sbb64 dst src))
val va_quick_Sbb64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Sbb64 dst src)) let va_quick_Sbb64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Sbb64 dst src)) =
false
null
false
(va_QProc (va_code_Sbb64 dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_Sbb64 dst src) (va_wpProof_Sbb64 dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_Sbb64", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X64.Ins...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_Sbb64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_Sbb64 dst src))
[]
Vale.X64.InsBasic.va_quick_Sbb64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_Sbb64 dst src)
{ "end_col": 31, "end_line": 494, "start_col": 2, "start_line": 493 }
Prims.Tot
val va_quick_IMul64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_IMul64 dst src))
[ { "abbrev": false, "full_module": "Vale.X64.CPU_Features_s", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.QuickCode", "short_module": null }, { "abbrev": false, "full_module": "Vale.X64.Decls", "short_module": null }, { "abbrev": false, ...
false
let va_quick_IMul64 (dst:va_operand_dst_opr64) (src:va_operand_opr64) : (va_quickCode unit (va_code_IMul64 dst src)) = (va_QProc (va_code_IMul64 dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_IMul64 dst src) (va_wpProof_IMul64 dst src))
val va_quick_IMul64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_IMul64 dst src)) let va_quick_IMul64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_IMul64 dst src)) =
false
null
false
(va_QProc (va_code_IMul64 dst src) ([va_Mod_flags; va_mod_dst_opr64 dst]) (va_wp_IMul64 dst src) (va_wpProof_IMul64 dst src))
{ "checked_file": "Vale.X64.InsBasic.fsti.checked", "dependencies": [ "Vale.X64.State.fsti.checked", "Vale.X64.Stack_i.fsti.checked", "Vale.X64.QuickCode.fst.checked", "Vale.X64.Memory.fsti.checked", "Vale.X64.Machine_s.fst.checked", "Vale.X64.Flags.fsti.checked", "Vale.X64.Decls.fsti.ch...
[ "total" ]
[ "Vale.X64.Decls.va_operand_dst_opr64", "Vale.X64.Decls.va_operand_opr64", "Vale.X64.QuickCode.va_QProc", "Prims.unit", "Vale.X64.InsBasic.va_code_IMul64", "Prims.Cons", "Vale.X64.QuickCode.mod_t", "Vale.X64.QuickCode.va_Mod_flags", "Vale.X64.QuickCode.va_mod_dst_opr64", "Prims.Nil", "Vale.X64.In...
[]
module Vale.X64.InsBasic open FStar.Mul open Vale.Def.Types_s open Vale.Arch.HeapImpl open Vale.Arch.Types open Vale.X64.Machine_s open Vale.X64.State open Vale.X64.Decls open Vale.X64.QuickCode unfold let vale_heap = Vale.X64.Memory.vale_heap unfold let vale_stack = Vale.X64.Stack_i.vale_stack open Vale.X64.CPU_Featur...
false
false
Vale.X64.InsBasic.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_IMul64 (dst: va_operand_dst_opr64) (src: va_operand_opr64) : (va_quickCode unit (va_code_IMul64 dst src))
[]
Vale.X64.InsBasic.va_quick_IMul64
{ "file_name": "obj/Vale.X64.InsBasic.fsti", "git_rev": "12c5e9539c7e3c366c26409d3b86493548c4483e", "git_url": "https://github.com/hacl-star/hacl-star.git", "project_name": "hacl-star" }
dst: Vale.X64.Decls.va_operand_dst_opr64 -> src: Vale.X64.Decls.va_operand_opr64 -> Vale.X64.QuickCode.va_quickCode Prims.unit (Vale.X64.InsBasic.va_code_IMul64 dst src)
{ "end_col": 32, "end_line": 607, "start_col": 2, "start_line": 606 }