Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
336839dd
Commit
336839dd
authored
4 years ago
by
Andre Maroneze
Browse files
Options
Downloads
Patches
Plain Diff
[Analysis-scripts] add warning about assembly; fix bug related to ids in C11 but not POSIX
parent
df7682b1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
share/analysis-scripts/estimate_difficulty.py
+10
-1
10 additions, 1 deletion
share/analysis-scripts/estimate_difficulty.py
with
10 additions
and
1 deletion
share/analysis-scripts/estimate_difficulty.py
+
10
−
1
View file @
336839dd
...
@@ -150,8 +150,12 @@ for callee in sorted(callees):
...
@@ -150,8 +150,12 @@ for callee in sorted(callees):
used_headers
.
add
(
posix_identifiers
[
callee
][
"
header
"
])
used_headers
.
add
(
posix_identifiers
[
callee
][
"
header
"
])
if
callee
in
c11_functions
:
if
callee
in
c11_functions
:
# check that the callee is not a macro or type (e.g. va_arg)
# check that the callee is not a macro or type (e.g. va_arg)
if
posix_identifiers
[
callee
][
"
id_type
"
]
!=
"
function
"
:
if
callee
not
in
posix_identifiers
:
# a few functions, such as strcpy_s, are in C11 but not in POSIX
continue
continue
else
:
if
posix_identifiers
[
callee
][
"
id_type
"
]
!=
"
function
"
:
continue
#print(f"C11 function: {callee}")
#print(f"C11 function: {callee}")
if
callee
in
libc_specified_functions
:
if
callee
in
libc_specified_functions
:
if
verbose
or
debug
:
if
verbose
or
debug
:
...
@@ -241,5 +245,10 @@ for keyword in c11_unsupported:
...
@@ -241,5 +245,10 @@ for keyword in c11_unsupported:
n
=
len
(
lines
)
n
=
len
(
lines
)
print
(
f
"
- warning: found
{
n
}
line
{
'
s
'
if
n
>
1
else
''
}
with occurrences of unsupported C11 construct
'
{
keyword
}
'"
)
print
(
f
"
- warning: found
{
n
}
line
{
'
s
'
if
n
>
1
else
''
}
with occurrences of unsupported C11 construct
'
{
keyword
}
'"
)
# assembly code
if
"
asm
"
in
callees
or
"
__asm
"
in
callees
or
"
__asm__
"
in
callees
:
print
(
f
"
- warning: code seems to contain inline assembly (
'
asm(...)
'
)
"
)
# TODO:
# TODO:
# - detect absence of 'main' function (library)
# - detect absence of 'main' function (library)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment