Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Fengmin Zhu
RefinedC
Commits
92b01682
Commit
92b01682
authored
Nov 10, 2020
by
Michael Sammler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated count annotations
parent
7682c6fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
90 additions
and
17 deletions
+90
-17
count_annotations.py
count_annotations.py
+90
-17
No files found.
count_annotations.py
View file @
92b01682
...
...
@@ -10,30 +10,95 @@ import subprocess
## TODO: also count Coq code
annotation_re
=
re
.
compile
(
r
"( ?)\[\[rc::([A-Za-z_]+)\s*\((.*?)\)\s*\]\]"
,
re
.
DOTALL
)
annotation_block_re
=
re
.
compile
(
r
"\[\[rc::([A-Za-z_]+)\s*\]\]"
)
inline_re
=
re
.
compile
(
"rc_([A-Za-z_]*)"
)
comment_re
=
re
.
compile
(
"//\s*@\s*rc::([A-Za-z_]*)"
)
ANNOT_TYPE
=
{
"manual_proof"
:
"annot"
,
"context"
:
"annot"
,
"annot_args"
:
"spec"
,
"import"
:
"annot"
,
"require"
:
"annot"
,
"inlined"
:
"annot"
,
"tagged_union"
:
"annot"
,
"union_tag"
:
"annot"
,
"unfold_int"
:
"annot"
,
"refined_by"
:
"annot"
,
"ptr_type"
:
"annot"
,
"field"
:
"annot"
,
"size"
:
"annot"
,
"global"
:
"annot"
,
"constraints"
:
"annot"
,
"parameters"
:
"spec"
,
"args"
:
"spec"
,
"requires"
:
"spec"
,
"ensures"
:
"spec"
,
"exists"
:
"spec"
,
"returns"
:
"spec"
,
"loopexists"
:
"annot"
,
"inv_vars"
:
"annot"
,
"block"
:
"annot"
,
"tactics"
:
"side"
,
"lemmas"
:
"side"
,
"unfold"
:
"rule"
,
"unfold_once"
:
"rule"
,
"unlock"
:
"rule"
,
"share"
:
"rule"
,
"to_uninit"
:
"rule"
,
"uninit_strengthen_align"
:
"rule"
,
}
def
print_stats
(
annots
,
loc
):
annots_sum_with_spec
=
0
for
k
,
v
in
annots
.
items
():
annots_sum_with_spec
+=
v
[
0
]
annots_sum_without_spec
=
0
# print(json.dumps(annots, indent=2))
types
=
{}
total
=
0
for
k
,
v
in
annots
.
items
():
annots_sum_without_spec
+=
v
[
1
]
loc
-=
annots_sum_with_spec
+
annots_sum_without_spec
print
(
"with spec: {}/{} = {:.2f}"
.
format
(
annots_sum_with_spec
,
loc
,
annots_sum_with_spec
/
loc
))
print
(
"without spec: {}/{} = {:.2f}"
.
format
(
annots_sum_without_spec
,
loc
,
annots_sum_without_spec
/
loc
))
if
k
not
in
ANNOT_TYPE
:
print
(
'unknown annotation: '
+
k
)
exit
(
1
)
t
=
ANNOT_TYPE
[
k
]
types
[
t
]
=
types
.
get
(
t
,
0
)
types
[
t
]
+=
v
if
t
!=
"import"
and
t
!=
"inlined"
and
t
!=
"require"
:
total
+=
v
types
[
"LoC"
]
=
loc
-
total
print
(
json
.
dumps
(
types
,
indent
=
2
))
# annots_sum_with_spec = 0
# for k,v in annots.items():
# annots_sum_with_spec += v[0]
# annots_sum_without_spec = 0
# for k,v in annots.items():
# annots_sum_without_spec += v[1]
# loc -= annots_sum_with_spec + annots_sum_without_spec
# print("with spec: {}/{} = {:.2f}".format(annots_sum_with_spec, loc, annots_sum_with_spec / loc))
# print("without spec: {}/{} = {:.2f}".format(annots_sum_without_spec, loc, annots_sum_without_spec / loc))
total
=
{}
def
parse_file
(
f
):
per_file
=
{}
for
match
in
annotation_re
.
finditer
(
f
):
num_lines
=
len
(
match
.
group
(
3
).
strip
().
split
(
'
\n
'
))
idx
=
0
if
match
.
group
(
1
)
==
""
else
1
name
=
match
.
group
(
2
)
if
name
==
"exists"
and
match
.
group
(
1
)
!=
""
:
name
=
"loopexists"
# idx = 0 if match.group(1) == "" else 1
# if "::" in name:
# if match.group(1) == "parameters":
# print(match.group(1), name)
per_file
[
name
]
=
per_file
.
get
(
name
,
0
)
per_file
[
name
]
+=
num_lines
for
match
in
annotation_block_re
.
finditer
(
f
):
num_lines
=
1
# if "::" in match.group(2):
# if match.group(1) == "parameters":
# print(match.group(1), match.group(2))
per_file
[
match
.
group
(
2
)]
=
per_file
.
get
(
match
.
group
(
2
),
[
0
,
0
])
per_file
[
match
.
group
(
2
)][
idx
]
+=
num_lines
# print(match.group(1))
per_file
[
match
.
group
(
1
)]
=
per_file
.
get
(
match
.
group
(
1
),
0
)
per_file
[
match
.
group
(
1
)]
+=
num_lines
for
match
in
inline_re
.
finditer
(
f
):
num_lines
=
1
...
...
@@ -41,8 +106,17 @@ def parse_file(f):
# if match.group(1) == "parameters":
# print(match.group(1))
per_file
[
match
.
group
(
1
)]
=
per_file
.
get
(
match
.
group
(
1
),
[
0
,
0
])
per_file
[
match
.
group
(
1
)][
1
]
+=
num_lines
per_file
[
match
.
group
(
1
)]
=
per_file
.
get
(
match
.
group
(
1
),
0
)
per_file
[
match
.
group
(
1
)]
+=
num_lines
for
match
in
comment_re
.
finditer
(
f
):
num_lines
=
1
# if "::" in match.group(2):
# if match.group(1) == "parameters":
# print(match.group(1))
per_file
[
match
.
group
(
1
)]
=
per_file
.
get
(
match
.
group
(
1
),
0
)
per_file
[
match
.
group
(
1
)]
+=
num_lines
return
per_file
...
...
@@ -70,9 +144,8 @@ for f in FILES:
print_stats
(
per_file
,
lines_per_file
[
f
])
for
k
,
v
in
per_file
.
items
():
total
[
k
]
=
total
.
get
(
k
,
[
0
,
0
])
total
[
k
][
0
]
+=
v
[
0
]
total
[
k
][
1
]
+=
v
[
1
]
total
[
k
]
=
total
.
get
(
k
,
0
)
total
[
k
]
+=
v
print
(
"total:"
)
print_stats
(
total
,
lines_total
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment