Skip to content

Commit b3e498e

Browse files
Merge PR rocq-prover#20342: Add some profiles around implicit computations
Reviewed-by: ppedrot Co-authored-by: ppedrot <[email protected]>
2 parents acd5707 + b42eda3 commit b3e498e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

interp/impargs.ml

+5-2
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,8 @@ let compute_implicits_names env sigma t =
274274
(absolute_pos+1,nnondep',(na,absolute_pos,dep_pos)::names) in
275275
let _,_,names = set_names ([rels],ids) names in
276276
List.rev names
277-
in aux env [] t
277+
in
278+
NewProfile.profile "compute_implicits_names" (fun () -> aux env [] t) ()
278279

279280
let compute_implicits_explanation_gen strict strongly_strict revpat contextual env sigma t =
280281
let open Context.Rel.Declaration in
@@ -288,11 +289,13 @@ let compute_implicits_explanation_gen strict strongly_strict revpat contextual e
288289
add_free_rels_until strict strongly_strict revpat n env sigma t Conclusion v
289290
else v
290291
in
292+
NewProfile.profile "compute_implicits_explanation_gen" (fun () ->
291293
match whd_prod env sigma t with
292294
| Some (na, a, b) ->
293295
let v = aux (push_rel (LocalAssum (na,a)) env) 1 b in
294296
Array.to_list v
295-
| _ -> []
297+
| _ -> [])
298+
()
296299

297300
let compute_implicits_explanation_flags env sigma f t =
298301
compute_implicits_explanation_gen

0 commit comments

Comments
 (0)